diff options
author | bunnei <bunneidev@gmail.com> | 2014-08-08 02:27:11 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-08 02:27:11 +0200 |
commit | 66f91b434631ee8b8447faf2c75d6406f4f7a69b (patch) | |
tree | 2535a477353477b24e3ca905ec24ca02ed23c89a /src | |
parent | Merge pull request #34 from bunnei/gsp-command-synch (diff) | |
download | yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.tar yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.tar.gz yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.tar.bz2 yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.tar.lz yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.tar.xz yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.tar.zst yuzu-66f91b434631ee8b8447faf2c75d6406f4f7a69b.zip |
Diffstat (limited to 'src')
-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 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 /// Maps a memory block to specified address Result MapMemoryBlock(Handle handle, u32 addr, u32 permissions, u32 other_permissions) { - DEBUG_LOG(SVC, "called memblock=0x08X, addr=0x%08X, mypermissions=0x%08X, otherpermission=%d", + DEBUG_LOG(SVC, "called memblock=0x%08X, addr=0x%08X, mypermissions=0x%08X, otherpermission=%d", handle, addr, permissions, other_permissions); Kernel::MemoryPermission permissions_type = static_cast<Kernel::MemoryPermission>(permissions); |