diff options
| author | 2015-12-25 14:21:45 -0500 | |
|---|---|---|
| committer | 2015-12-25 14:21:45 -0500 | |
| commit | 270cbb01198b5b2e7ea2972daac68d8a1fa7968a (patch) | |
| tree | c4cfd1a3855fd2aec92a0fcaa15f566d5423814d | |
| parent | Merge pull request #1287 from lioncash/memory (diff) | |
| download | yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.tar.gz yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.tar.xz yuzu-270cbb01198b5b2e7ea2972daac68d8a1fa7968a.zip | |
svc: Remove superfluous printf argument
| -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) { | |||
| 807 | } | 807 | } |
| 808 | break; | 808 | break; |
| 809 | case SystemInfoType::KERNEL_ALLOCATED_PAGES: | 809 | case SystemInfoType::KERNEL_ALLOCATED_PAGES: |
| 810 | LOG_ERROR(Kernel_SVC, "unimplemented GetSystemInfo type=2 param=%d", type, param); | 810 | LOG_ERROR(Kernel_SVC, "unimplemented GetSystemInfo type=2 param=%d", param); |
| 811 | *out = 0; | 811 | *out = 0; |
| 812 | break; | 812 | break; |
| 813 | case SystemInfoType::KERNEL_SPAWNED_PIDS: | 813 | case SystemInfoType::KERNEL_SPAWNED_PIDS: |