summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorLectem <lectem@gmail.com>2016-07-30 18:19:00 +0200
committerLectem <lectem@gmail.com>2016-08-02 16:45:15 +0200
commita94fb932ff8a326a2e85ab3814663af565313ec5 (patch)
treea56b18ae8e62bfe3dff6a2948264e1918eafcada /src/core/hle/service/srv.cpp
parentInput GUI: Add tab to remap controls (#1900) (diff)
downloadyuzu-a94fb932ff8a326a2e85ab3814663af565313ec5.tar
yuzu-a94fb932ff8a326a2e85ab3814663af565313ec5.tar.gz
yuzu-a94fb932ff8a326a2e85ab3814663af565313ec5.tar.bz2
yuzu-a94fb932ff8a326a2e85ab3814663af565313ec5.tar.lz
yuzu-a94fb932ff8a326a2e85ab3814663af565313ec5.tar.xz
yuzu-a94fb932ff8a326a2e85ab3814663af565313ec5.tar.zst
yuzu-a94fb932ff8a326a2e85ab3814663af565313ec5.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 8bd36d5ea..3c05f836b 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -57,7 +57,7 @@ static void EnableNotification(Service::Interface* self) {
cmd_buff[0] = IPC::MakeHeader(0x2, 0x1, 0x2); // 0x20042
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
- cmd_buff[2] = IPC::TransferHandleDesc();
+ cmd_buff[2] = IPC::CopyHandleDesc(1);
cmd_buff[3] = Kernel::g_handle_table.Create(event_handle).MoveFrom();
LOG_WARNING(Service_SRV, "(STUBBED) called");
}