diff options
| author | 2015-12-13 12:53:30 -0800 | |
|---|---|---|
| committer | 2015-12-13 12:53:30 -0800 | |
| commit | bbb96a392ddcd40e9ca1fb87cc4e9c7b0c5c39ee (patch) | |
| tree | 6ee23b225f0cf2c9c53ff8b2e74cff3d12ad3055 | |
| parent | Merge pull request #1267 from yuriks/flipped-framebuffer (diff) | |
| parent | svc: Fix compilation with LOG_TRACE enabled (diff) | |
| download | yuzu-bbb96a392ddcd40e9ca1fb87cc4e9c7b0c5c39ee.tar.gz yuzu-bbb96a392ddcd40e9ca1fb87cc4e9c7b0c5c39ee.tar.xz yuzu-bbb96a392ddcd40e9ca1fb87cc4e9c7b0c5c39ee.zip | |
Merge pull request #1281 from lioncash/compile
svc: Fix compilation with LOG_TRACE enabled
| -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 7f63ff505..9acebeb36 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp | |||
| @@ -781,7 +781,7 @@ static ResultCode CreateMemoryBlock(Handle* out_handle, u32 addr, u32 size, u32 | |||
| 781 | static ResultCode GetSystemInfo(s64* out, u32 type, s32 param) { | 781 | static ResultCode GetSystemInfo(s64* out, u32 type, s32 param) { |
| 782 | using Kernel::MemoryRegion; | 782 | using Kernel::MemoryRegion; |
| 783 | 783 | ||
| 784 | LOG_TRACE(Kernel_SVC, "called process=0x%08X type=%u param=%d", process_handle, type, param); | 784 | LOG_TRACE(Kernel_SVC, "called type=%u param=%d", type, param); |
| 785 | 785 | ||
| 786 | switch ((SystemInfoType)type) { | 786 | switch ((SystemInfoType)type) { |
| 787 | case SystemInfoType::REGION_MEMORY_USAGE: | 787 | case SystemInfoType::REGION_MEMORY_USAGE: |