summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/srv.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/srv.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/srv.cpp')
-rw-r--r--src/core/hle/service/srv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index ac5f30a28..082834cfe 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -24,7 +24,7 @@ static void GetProcSemaphore(Service::Interface* self) {
// TODO(bunnei): Change to a semaphore once these have been implemented
g_event_handle = Kernel::CreateEvent(RESETTYPE_ONESHOT, "SRV:Event");
- Kernel::SetEventLocked(g_event_handle, false);
+ Kernel::ClearEvent(g_event_handle);
cmd_buff[1] = 0; // No error
cmd_buff[3] = g_event_handle;