diff options
Diffstat (limited to 'src/core/hle/service/apt.cpp')
| -rw-r--r-- | src/core/hle/service/apt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp index b1e49db97..288a68a86 100644 --- a/src/core/hle/service/apt.cpp +++ b/src/core/hle/service/apt.cpp | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #include "core/hle/hle.h" | 8 | #include "core/hle/hle.h" |
| 9 | #include "core/hle/service/apt.h" | 9 | #include "core/hle/service/apt.h" |
| 10 | 10 | ||
| 11 | namespace Service { | 11 | namespace APT_U { |
| 12 | 12 | ||
| 13 | const HLE::FunctionDef APT_U_Table[] = { | 13 | const HLE::FunctionDef APT_U_Table[] = { |
| 14 | {0x00010040, NULL, "GetLockHandle"}, | 14 | {0x00010040, NULL, "GetLockHandle"}, |
| @@ -92,7 +92,7 @@ const HLE::FunctionDef APT_U_Table[] = { | |||
| 92 | }; | 92 | }; |
| 93 | 93 | ||
| 94 | // Returns handle to APT Mutex. Not imlemented. | 94 | // Returns handle to APT Mutex. Not imlemented. |
| 95 | Syscall::Result APT_U::GetLockHandle() { | 95 | Syscall::Result Interface::GetLockHandle() { |
| 96 | return 0x00000000; | 96 | return 0x00000000; |
| 97 | } | 97 | } |
| 98 | 98 | ||
| @@ -100,7 +100,7 @@ Syscall::Result APT_U::GetLockHandle() { | |||
| 100 | * Called when svcSendSyncRequest is called, loads command buffer and executes comand | 100 | * Called when svcSendSyncRequest is called, loads command buffer and executes comand |
| 101 | * @return Return result of svcSendSyncRequest passed back to user app | 101 | * @return Return result of svcSendSyncRequest passed back to user app |
| 102 | */ | 102 | */ |
| 103 | Syscall::Result APT_U::Sync() { | 103 | Syscall::Result Interface::Sync() { |
| 104 | Syscall::Result res = 0; | 104 | Syscall::Result res = 0; |
| 105 | u32* cmd_buff = (u32*)HLE::GetPointer(HLE::CMD_BUFFER_ADDR + CMD_OFFSET); | 105 | u32* cmd_buff = (u32*)HLE::GetPointer(HLE::CMD_BUFFER_ADDR + CMD_OFFSET); |
| 106 | 106 | ||