aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2014-08-26 18:24:40 -0400
committerGravatar bunnei <bunneidev@gmail.com>2014-08-28 17:51:41 -0400
commitfb908b939523395fd863e72453b3c8da84d8a74b (patch)
tree4eee493d1daa510eb1dd4bea64afe0060727f8b6 /src/core/hle/service/srv.cpp
parent1a7bbe2569b95a19926349d0975894f8fa873cab (diff)
srv::Initialize: Return "success" status code.
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-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 8f8413d0..23be3cf2 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -16,6 +16,10 @@ Handle g_event_handle = 0;
void Initialize(Service::Interface* self) {
DEBUG_LOG(OSHLE, "called");
+
+ u32* cmd_buff = Service::GetCommandBuffer();
+
+ cmd_buff[1] = 0; // No error
}
void GetProcSemaphore(Service::Interface* self) {