summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-03 05:30:27 +0200
committerbunnei <bunneidev@gmail.com>2018-04-03 05:50:59 +0200
commit910b02d74b38fc37915be35a2d2a5fa027e37252 (patch)
tree3fb96ff9822600ca789337fd76fd477e90a6b970
parentvi: Implement GetDisplayResolution. (diff)
downloadyuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.tar
yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.tar.gz
yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.tar.bz2
yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.tar.lz
yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.tar.xz
yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.tar.zst
yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.zip
-rw-r--r--src/core/hle/service/nifm/nifm.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index dd2d5fe63..b32112db3 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -70,9 +70,8 @@ private:
}
void GetResult(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_NIFM, "(STUBBED) called");
- IPC::ResponseBuilder rb{ctx, 3};
+ IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
- rb.Push<u32>(0);
}
void GetSystemEventReadableHandles(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_NIFM, "(STUBBED) called");