summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/srv.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 8f8413d02..23be3cf2c 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -16,6 +16,10 @@ Handle g_event_handle = 0;
16 16
17void Initialize(Service::Interface* self) { 17void Initialize(Service::Interface* self) {
18 DEBUG_LOG(OSHLE, "called"); 18 DEBUG_LOG(OSHLE, "called");
19
20 u32* cmd_buff = Service::GetCommandBuffer();
21
22 cmd_buff[1] = 0; // No error
19} 23}
20 24
21void GetProcSemaphore(Service::Interface* self) { 25void GetProcSemaphore(Service::Interface* self) {