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 10d9a94bd..33ee1ec8f 100644 --- a/src/core/hle/service/apt.cpp +++ b/src/core/hle/service/apt.cpp | |||
| @@ -19,8 +19,8 @@ void Initialize(Service::Interface* self) { | |||
| 19 | u32* cmd_buff = Service::GetCommandBuffer(); | 19 | u32* cmd_buff = Service::GetCommandBuffer(); |
| 20 | DEBUG_LOG(KERNEL, "called"); | 20 | DEBUG_LOG(KERNEL, "called"); |
| 21 | 21 | ||
| 22 | cmd_buff[3] = Kernel::CreateEvent(RESETTYPE_ONESHOT); // APT menu event handle | 22 | cmd_buff[3] = Kernel::CreateEvent(RESETTYPE_ONESHOT, "APT_U:Menu"); // APT menu event handle |
| 23 | cmd_buff[4] = Kernel::CreateEvent(RESETTYPE_ONESHOT); // APT pause event handle | 23 | cmd_buff[4] = Kernel::CreateEvent(RESETTYPE_ONESHOT, "APT_U:Pause"); // APT pause event handle |
| 24 | 24 | ||
| 25 | Kernel::SetEventLocked(cmd_buff[3], true); | 25 | Kernel::SetEventLocked(cmd_buff[3], true); |
| 26 | Kernel::SetEventLocked(cmd_buff[4], false); // Fire start event | 26 | Kernel::SetEventLocked(cmd_buff[4], false); // Fire start event |
| @@ -32,7 +32,7 @@ void GetLockHandle(Service::Interface* self) { | |||
| 32 | u32* cmd_buff = Service::GetCommandBuffer(); | 32 | u32* cmd_buff = Service::GetCommandBuffer(); |
| 33 | u32 flags = cmd_buff[1]; // TODO(bunnei): Figure out the purpose of the flag field | 33 | u32 flags = cmd_buff[1]; // TODO(bunnei): Figure out the purpose of the flag field |
| 34 | cmd_buff[1] = 0; // No error | 34 | cmd_buff[1] = 0; // No error |
| 35 | cmd_buff[5] = Kernel::CreateMutex(false); | 35 | cmd_buff[5] = Kernel::CreateMutex(false, "APT_U:Lock"); |
| 36 | DEBUG_LOG(KERNEL, "called handle=0x%08X", cmd_buff[5]); | 36 | DEBUG_LOG(KERNEL, "called handle=0x%08X", cmd_buff[5]); |
| 37 | } | 37 | } |
| 38 | 38 | ||