summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/nifm/nifm.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index 7eef35e54..db7ec6d0e 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -128,8 +128,11 @@ private:
128 void GetAppletInfo(Kernel::HLERequestContext& ctx) { 128 void GetAppletInfo(Kernel::HLERequestContext& ctx) {
129 LOG_WARNING(Service_NIFM, "(STUBBED) called"); 129 LOG_WARNING(Service_NIFM, "(STUBBED) called");
130 130
131 IPC::ResponseBuilder rb{ctx, 2}; 131 IPC::ResponseBuilder rb{ctx, 8};
132 rb.Push(RESULT_SUCCESS); 132 rb.Push(RESULT_SUCCESS);
133 rb.Push<u32>(0);
134 rb.Push<u32>(0);
135 rb.Push<u32>(0);
133 } 136 }
134 137
135 Kernel::EventPair event1, event2; 138 Kernel::EventPair event1, event2;