summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-01 08:05:19 +0100
committerLioncash <mathew1800@gmail.com>2018-12-01 08:11:42 +0100
commite88cdcc912ae6929f9008c1b307c62f1e7b0637f (patch)
treedd7c562968eeaa58051c62fc317256a20687e11b /src/video_core/gpu.cpp
parentMerge pull request #1829 from lioncash/lang (diff)
downloadyuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar
yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.gz
yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.bz2
yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.lz
yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.xz
yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.tar.zst
yuzu-e88cdcc912ae6929f9008c1b307c62f1e7b0637f.zip
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp6
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 {
};
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());