diff options
| author | 2014-08-12 18:23:17 -0400 | |
|---|---|---|
| committer | 2014-08-12 18:23:17 -0400 | |
| commit | bf7bc3dacd7a1a87d068bf7f42432892cb34a5f8 (patch) | |
| tree | f874735b656200ea23f34da4e2a96284b6f71681 /src/core/hle/svc.cpp | |
| parent | Merge pull request #41 from archshift/itr (diff) | |
| parent | HID: Added new function entries from 3dbrew to FunctionTable. (diff) | |
| download | yuzu-bf7bc3dacd7a1a87d068bf7f42432892cb34a5f8.tar.gz yuzu-bf7bc3dacd7a1a87d068bf7f42432892cb34a5f8.tar.xz yuzu-bf7bc3dacd7a1a87d068bf7f42432892cb34a5f8.zip | |
Merge pull request #39 from bunnei/hid-minor-improvements
Hid minor improvements
Diffstat (limited to 'src/core/hle/svc.cpp')
| -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 | |||
| 56 | 56 | ||
| 57 | /// Maps a memory block to specified address | 57 | /// Maps a memory block to specified address |
| 58 | Result MapMemoryBlock(Handle handle, u32 addr, u32 permissions, u32 other_permissions) { | 58 | Result 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); |