diff options
| author | 2018-12-01 02:05:19 -0500 | |
|---|---|---|
| committer | 2018-12-01 02:11:42 -0500 | |
| commit | e88cdcc912ae6929f9008c1b307c62f1e7b0637f (patch) | |
| tree | dd7c562968eeaa58051c62fc317256a20687e11b /src/video_core/gpu.cpp | |
| parent | Merge pull request #1829 from lioncash/lang (diff) | |
| download | yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.gz yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.xz yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.zip | |
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)
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
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 { | |||
| 128 | }; | 128 | }; |
| 129 | 129 | ||
| 130 | void GPU::CallMethod(const MethodCall& method_call) { | 130 | void GPU::CallMethod(const MethodCall& method_call) { |
| 131 | LOG_TRACE(HW_GPU, | 131 | LOG_TRACE(HW_GPU, "Processing method {:08X} on subchannel {}", method_call.method, |
| 132 | "Processing method {:08X} on subchannel {} value " | 132 | method_call.subchannel); |
| 133 | "{:08X} remaining params {}", | ||
| 134 | MethCall.method, MethCall.subchannel, value, remaining_params); | ||
| 135 | 133 | ||
| 136 | ASSERT(method_call.subchannel < bound_engines.size()); | 134 | ASSERT(method_call.subchannel < bound_engines.size()); |
| 137 | 135 | ||