diff options
| author | 2014-11-14 11:47:06 -0500 | |
|---|---|---|
| committer | 2014-11-14 12:08:26 -0500 | |
| commit | ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56 (patch) | |
| tree | de7fc6fb4bcc0e8e72e11891490f83028d8a3578 /src/core/hle/kernel | |
| parent | Merge pull request #183 from archshift/lowpath (diff) | |
| download | yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.tar.gz yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.tar.xz yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.zip | |
Fix two format strings.
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/shared_memory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/shared_memory.cpp b/src/core/hle/kernel/shared_memory.cpp index 6bd5e2728..f538c6550 100644 --- a/src/core/hle/kernel/shared_memory.cpp +++ b/src/core/hle/kernel/shared_memory.cpp | |||
| @@ -72,7 +72,7 @@ Result MapSharedMemory(u32 handle, u32 address, MemoryPermission permissions, | |||
| 72 | 72 | ||
| 73 | if (address < Memory::SHARED_MEMORY_VADDR || address >= Memory::SHARED_MEMORY_VADDR_END) { | 73 | if (address < Memory::SHARED_MEMORY_VADDR || address >= Memory::SHARED_MEMORY_VADDR_END) { |
| 74 | ERROR_LOG(KERNEL, "cannot map handle=0x%08X, address=0x%08X outside of shared mem bounds!", | 74 | ERROR_LOG(KERNEL, "cannot map handle=0x%08X, address=0x%08X outside of shared mem bounds!", |
| 75 | handle); | 75 | handle, address); |
| 76 | return -1; | 76 | return -1; |
| 77 | } | 77 | } |
| 78 | SharedMemory* shared_memory = Kernel::g_object_pool.GetFast<SharedMemory>(handle); | 78 | SharedMemory* shared_memory = Kernel::g_object_pool.GetFast<SharedMemory>(handle); |