Skip to content

Commit

Permalink
Format string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Oct 27, 2022
1 parent e058f8a commit 85e7933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GPU/Common/PostShader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ void LoadPostShaderInfo(Draw::DrawContext *draw, const std::vector<Path> &direct
appendTextureShader(info);
}
} else if (!section.name().empty()) {
WARN_LOG(G3D, "Unrecognized shader type '%s' or invalid shader in section '%s' : %d", shaderType.c_str(), section.name().c_str());
WARN_LOG(G3D, "Unrecognized shader type '%s' or invalid shader in section '%s'", shaderType.c_str(), section.name().c_str());
}
}
}
Expand Down

0 comments on commit 85e7933

Please sign in to comment.