diff options
Diffstat (limited to 'src/core/hle/service/apt.cpp')
| -rw-r--r-- | src/core/hle/service/apt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp index b01f35ac5..32759a087 100644 --- a/src/core/hle/service/apt.cpp +++ b/src/core/hle/service/apt.cpp | |||
| @@ -23,6 +23,7 @@ void GetLockHandle(Service::Interface* self) { | |||
| 23 | u32 flags = cmd_buff[1]; // TODO(bunnei): Figure out the purpose of the flag field | 23 | u32 flags = cmd_buff[1]; // TODO(bunnei): Figure out the purpose of the flag field |
| 24 | cmd_buff[1] = 0; // No error | 24 | cmd_buff[1] = 0; // No error |
| 25 | cmd_buff[5] = Kernel::CreateMutex(false); | 25 | cmd_buff[5] = Kernel::CreateMutex(false); |
| 26 | DEBUG_LOG(KERNEL, "APT_U::GetLockHandle called : created handle 0x%08X", cmd_buff[5]); | ||
| 26 | } | 27 | } |
| 27 | 28 | ||
| 28 | const Interface::FunctionInfo FunctionTable[] = { | 29 | const Interface::FunctionInfo FunctionTable[] = { |