summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt_u.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-16 01:29:46 +0100
committerbunnei <bunneidev@gmail.com>2015-01-22 00:43:50 +0100
commite4a5d8ad4f708c9674c9865eb872e3c081d9a8c8 (patch)
tree5604f380890c841fa850de11f84239c9cf7c7191 /src/core/hle/service/apt_u.cpp
parentThread: Keep track of multiple wait objects. (diff)
downloadyuzu-e4a5d8ad4f708c9674c9865eb872e3c081d9a8c8.tar
yuzu-e4a5d8ad4f708c9674c9865eb872e3c081d9a8c8.tar.gz
yuzu-e4a5d8ad4f708c9674c9865eb872e3c081d9a8c8.tar.bz2
yuzu-e4a5d8ad4f708c9674c9865eb872e3c081d9a8c8.tar.lz
yuzu-e4a5d8ad4f708c9674c9865eb872e3c081d9a8c8.tar.xz
yuzu-e4a5d8ad4f708c9674c9865eb872e3c081d9a8c8.tar.zst
yuzu-e4a5d8ad4f708c9674c9865eb872e3c081d9a8c8.zip
Diffstat (limited to 'src/core/hle/service/apt_u.cpp')
-rw-r--r--src/core/hle/service/apt_u.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/apt_u.cpp b/src/core/hle/service/apt_u.cpp
index 69a7bcf92..d318de3d2 100644
--- a/src/core/hle/service/apt_u.cpp
+++ b/src/core/hle/service/apt_u.cpp
@@ -50,8 +50,8 @@ void Initialize(Service::Interface* self) {
cmd_buff[3] = notification_event_handle;
cmd_buff[4] = pause_event_handle;
- Kernel::SetEventLocked(notification_event_handle, true);
- Kernel::SetEventLocked(pause_event_handle, false); // Fire start event
+ Kernel::ClearEvent(notification_event_handle);
+ Kernel::SignalEvent(pause_event_handle); // Fire start event
_assert_msg_(KERNEL, (0 != lock_handle), "Cannot initialize without lock");
Kernel::ReleaseMutex(lock_handle);