From e88cdcc912ae6929f9008c1b307c62f1e7b0637f Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 1 Dec 2018 02:05:19 -0500 Subject: Fix debug build A non-existent parameter was left in some formatting calls (the logging macro for which only does anything meaningful on debug builds) --- src/video_core/gpu.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/video_core/gpu.cpp') diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index 6c81dee64..fd1242333 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp @@ -128,10 +128,8 @@ enum class BufferMethods { }; void GPU::CallMethod(const MethodCall& method_call) { - LOG_TRACE(HW_GPU, - "Processing method {:08X} on subchannel {} value " - "{:08X} remaining params {}", - MethCall.method, MethCall.subchannel, value, remaining_params); + LOG_TRACE(HW_GPU, "Processing method {:08X} on subchannel {}", method_call.method, + method_call.subchannel); ASSERT(method_call.subchannel < bound_engines.size()); -- cgit v1.2.3