summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-12-25 20:21:45 +0100
committerLioncash <mathew1800@gmail.com>2015-12-25 20:21:45 +0100
commit270cbb01198b5b2e7ea2972daac68d8a1fa7968a (patch)
treec4cfd1a3855fd2aec92a0fcaa15f566d5423814d /src/core
parentMerge pull request #1287 from lioncash/memory (diff)
downloadyuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.tar
yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.tar.gz
yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.tar.bz2
yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.tar.lz
yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.tar.xz
yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.tar.zst
yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 9acebeb36..e39edcc16 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -807,7 +807,7 @@ static ResultCode GetSystemInfo(s64* out, u32 type, s32 param) {
}
break;
case SystemInfoType::KERNEL_ALLOCATED_PAGES:
- LOG_ERROR(Kernel_SVC, "unimplemented GetSystemInfo type=2 param=%d", type, param);
+ LOG_ERROR(Kernel_SVC, "unimplemented GetSystemInfo type=2 param=%d", param);
*out = 0;
break;
case SystemInfoType::KERNEL_SPAWNED_PIDS: