diff options
Diffstat (limited to 'Source/Core/VideoCommon/FramebufferShaderGen.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/FramebufferShaderGen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/FramebufferShaderGen.cpp b/Source/Core/VideoCommon/FramebufferShaderGen.cpp index 3e4f27a1e0..e5987fe5d5 100644 --- a/Source/Core/VideoCommon/FramebufferShaderGen.cpp +++ b/Source/Core/VideoCommon/FramebufferShaderGen.cpp @@ -626,7 +626,7 @@ std::string GenerateTextureReinterpretShader(TextureFormat from_format, TextureF break; default: - WARN_LOG(VIDEO, "From format %u is not supported", static_cast<u32>(from_format)); + WARN_LOG_FMT(VIDEO, "From format {} is not supported", static_cast<u32>(from_format)); return "{}\n"; } @@ -678,7 +678,7 @@ std::string GenerateTextureReinterpretShader(TextureFormat from_format, TextureF } break; default: - WARN_LOG(VIDEO, "To format %u is not supported", static_cast<u32>(to_format)); + WARN_LOG_FMT(VIDEO, "To format {} is not supported", static_cast<u32>(to_format)); return "{}\n"; } |
