diff options
author | bunnei <bunneidev@gmail.com> | 2015-12-27 22:19:48 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-12-27 22:19:48 +0100 |
commit | 8f39297c5300b792abef2aaf7b7a4c14988ed4f8 (patch) | |
tree | a3e7fee9baf47be963fb7708d8f62b759aa95f7b /src/core | |
parent | Merge pull request #1290 from LFsWang/master (diff) | |
parent | svc: Remove superfluous printf argument (diff) | |
download | yuzu-8f39297c5300b792abef2aaf7b7a4c14988ed4f8.tar yuzu-8f39297c5300b792abef2aaf7b7a4c14988ed4f8.tar.gz yuzu-8f39297c5300b792abef2aaf7b7a4c14988ed4f8.tar.bz2 yuzu-8f39297c5300b792abef2aaf7b7a4c14988ed4f8.tar.lz yuzu-8f39297c5300b792abef2aaf7b7a4c14988ed4f8.tar.xz yuzu-8f39297c5300b792abef2aaf7b7a4c14988ed4f8.tar.zst yuzu-8f39297c5300b792abef2aaf7b7a4c14988ed4f8.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/svc.cpp | 2 |
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: |