diff options
| -rw-r--r-- | src/core/hle/service/apt_u.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/apt_u.cpp b/src/core/hle/service/apt_u.cpp index 5d7f0bac9..4997a681e 100644 --- a/src/core/hle/service/apt_u.cpp +++ b/src/core/hle/service/apt_u.cpp | |||
| @@ -34,7 +34,11 @@ void Initialize(Service::Interface* self) { | |||
| 34 | Kernel::SetEventLocked(cmd_buff[3], true); | 34 | Kernel::SetEventLocked(cmd_buff[3], true); |
| 35 | Kernel::SetEventLocked(cmd_buff[4], false); // Fire start event | 35 | Kernel::SetEventLocked(cmd_buff[4], false); // Fire start event |
| 36 | 36 | ||
| 37 | _assert_msg_(KERNEL, (0 != lock_handle), "Cannot initialize without lock"); | ||
| 38 | Kernel::ReleaseMutex(lock_handle); | ||
| 39 | |||
| 37 | cmd_buff[1] = 0; // No error | 40 | cmd_buff[1] = 0; // No error |
| 41 | |||
| 38 | DEBUG_LOG(KERNEL, "called"); | 42 | DEBUG_LOG(KERNEL, "called"); |
| 39 | } | 43 | } |
| 40 | 44 | ||