diff options
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r-- | src/video_core/gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index 9eb143918..756518ee7 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp @@ -30,7 +30,7 @@ u32 RenderTargetBytesPerPixel(RenderTargetFormat format) { case RenderTargetFormat::RGB10_A2_UNORM: return 4; default: - UNIMPLEMENTED_MSG("Unimplemented render target format %u", static_cast<u32>(format)); + UNIMPLEMENTED_MSG("Unimplemented render target format {}", static_cast<u32>(format)); } } |