summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/svc.cpp2
-rw-r--r--src/video_core/gpu.cpp6
2 files changed, 3 insertions, 5 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 5e9660a48..3339777c1 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1044,7 +1044,7 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V
1044 LOG_TRACE(Kernel_SVC, 1044 LOG_TRACE(Kernel_SVC,
1045 "called entrypoint=0x{:08X} ({}), arg=0x{:08X}, stacktop=0x{:08X}, " 1045 "called entrypoint=0x{:08X} ({}), arg=0x{:08X}, stacktop=0x{:08X}, "
1046 "threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}", 1046 "threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}",
1047 entry_point, name, arg, stack_top, priority, processor_id, *out_handle); 1047 entry_point, arg, stack_top, priority, processor_id, *out_handle);
1048 1048
1049 if (priority > THREADPRIO_LOWEST) { 1049 if (priority > THREADPRIO_LOWEST) {
1050 LOG_ERROR(Kernel_SVC, "An invalid priority was specified, expected {} but got {}", 1050 LOG_ERROR(Kernel_SVC, "An invalid priority was specified, expected {} but got {}",
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
130void GPU::CallMethod(const MethodCall& method_call) { 130void 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