summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-11-15 07:41:28 +0100
committerbunnei <bunneidev@gmail.com>2014-11-15 07:41:28 +0100
commit26622818aea65134812fb0055f38b9b9ab5a2672 (patch)
tree297458a20a380d070c6f7e39c68a8c2fce38c3c6 /src/core
parentMerge pull request #194 from lioncash/virt (diff)
parentFix two format strings. (diff)
downloadyuzu-26622818aea65134812fb0055f38b9b9ab5a2672.tar
yuzu-26622818aea65134812fb0055f38b9b9ab5a2672.tar.gz
yuzu-26622818aea65134812fb0055f38b9b9ab5a2672.tar.bz2
yuzu-26622818aea65134812fb0055f38b9b9ab5a2672.tar.lz
yuzu-26622818aea65134812fb0055f38b9b9ab5a2672.tar.xz
yuzu-26622818aea65134812fb0055f38b9b9ab5a2672.tar.zst
yuzu-26622818aea65134812fb0055f38b9b9ab5a2672.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/shared_memory.cpp2
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,
if (address < Memory::SHARED_MEMORY_VADDR || address >= Memory::SHARED_MEMORY_VADDR_END) {
ERROR_LOG(KERNEL, "cannot map handle=0x%08X, address=0x%08X outside of shared mem bounds!",
- handle);
+ handle, address);
return -1;
}
SharedMemory* shared_memory = Kernel::g_object_pool.GetFast<SharedMemory>(handle);