summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2014-08-07 20:27:11 -0400
committerGravatar bunnei2014-08-07 20:27:11 -0400
commit66f91b434631ee8b8447faf2c75d6406f4f7a69b (patch)
tree2535a477353477b24e3ca905ec24ca02ed23c89a
parentMerge pull request #34 from bunnei/gsp-command-synch (diff)
downloadyuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.tar.gz
yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.tar.xz
yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.zip
SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call.
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 328d048bd..19f717bd2 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -56,7 +56,7 @@ Result ControlMemory(u32* out_addr, u32 operation, u32 addr0, u32 addr1, u32 siz
56 56
57/// Maps a memory block to specified address 57/// Maps a memory block to specified address
58Result MapMemoryBlock(Handle handle, u32 addr, u32 permissions, u32 other_permissions) { 58Result MapMemoryBlock(Handle handle, u32 addr, u32 permissions, u32 other_permissions) {
59 DEBUG_LOG(SVC, "called memblock=0x08X, addr=0x%08X, mypermissions=0x%08X, otherpermission=%d", 59 DEBUG_LOG(SVC, "called memblock=0x%08X, addr=0x%08X, mypermissions=0x%08X, otherpermission=%d",
60 handle, addr, permissions, other_permissions); 60 handle, addr, permissions, other_permissions);
61 61
62 Kernel::MemoryPermission permissions_type = static_cast<Kernel::MemoryPermission>(permissions); 62 Kernel::MemoryPermission permissions_type = static_cast<Kernel::MemoryPermission>(permissions);