summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/FramebufferShaderGen.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-11-18 11:10:48 +0100
committerGitHub <noreply@github.com>2020-11-18 11:10:48 +0100
commit4eecb8fd1100db51a118c220c8b6a61fd672fc42 (patch)
tree5c08b8d1d92b0b676a0c064d2200e4d6f64d5af5 /Source/Core/VideoCommon/FramebufferShaderGen.cpp
parenteb1581bbcc30b79f51b736d2f31c9cb0489b1162 (diff)
parent3d9b2aa0055ded7ee74f6e4a73ff54acecf313a9 (diff)
Merge pull request #9248 from lioncash/video-fmt
VideoCommon: Migrate over to fmt
Diffstat (limited to 'Source/Core/VideoCommon/FramebufferShaderGen.cpp')
-rw-r--r--Source/Core/VideoCommon/FramebufferShaderGen.cpp4
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";
}