diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/syscall.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/syscall.cpp b/src/core/hle/syscall.cpp index de1c11862..df6412743 100644 --- a/src/core/hle/syscall.cpp +++ b/src/core/hle/syscall.cpp | |||
| @@ -26,7 +26,7 @@ enum MapMemoryPermission { | |||
| 26 | }; | 26 | }; |
| 27 | 27 | ||
| 28 | /// Map application or GSP heap memory | 28 | /// Map application or GSP heap memory |
| 29 | Result ControlMemory(void* outaddr, u32 addr0, u32 addr1, u32 size, u32 operation, u32 permissions) { | 29 | Result ControlMemory(u32 operation, u32 addr0, u32 addr1, u32 size, u32 permissions) { |
| 30 | u32 virtual_address = 0x00000000; | 30 | u32 virtual_address = 0x00000000; |
| 31 | 31 | ||
| 32 | switch (operation) { | 32 | switch (operation) { |
| @@ -93,7 +93,7 @@ Result WaitSynchronization1(Handle handle, s64 nanoseconds) { | |||
| 93 | 93 | ||
| 94 | const HLE::FunctionDef Syscall_Table[] = { | 94 | const HLE::FunctionDef Syscall_Table[] = { |
| 95 | {0x00, NULL, "Unknown"}, | 95 | {0x00, NULL, "Unknown"}, |
| 96 | {0x01, WrapI_VUUUUU<ControlMemory>, "ControlMemory"}, | 96 | {0x01, WrapI_UUUUU<ControlMemory>, "ControlMemory"}, |
| 97 | {0x02, NULL, "QueryMemory"}, | 97 | {0x02, NULL, "QueryMemory"}, |
| 98 | {0x03, NULL, "ExitProcess"}, | 98 | {0x03, NULL, "ExitProcess"}, |
| 99 | {0x04, NULL, "GetProcessAffinityMask"}, | 99 | {0x04, NULL, "GetProcessAffinityMask"}, |