summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/shared_memory.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-11-14 17:47:06 +0100
committerLioncash <mathew1800@gmail.com>2014-11-14 18:08:26 +0100
commitac58b76e712cb6211b6aa6eec0d3b012ebfd7a56 (patch)
treede7fc6fb4bcc0e8e72e11891490f83028d8a3578 /src/core/hle/kernel/shared_memory.cpp
parentMerge pull request #183 from archshift/lowpath (diff)
downloadyuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.tar
yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.tar.gz
yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.tar.bz2
yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.tar.lz
yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.tar.xz
yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.tar.zst
yuzu-ac58b76e712cb6211b6aa6eec0d3b012ebfd7a56.zip
Diffstat (limited to 'src/core/hle/kernel/shared_memory.cpp')
-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);