summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Morph2021-01-31 02:19:36 -0500
committerGravatar Morph2021-01-31 02:19:36 -0500
commit9914db8daa5fc58994179f8d4addc962117a64ab (patch)
tree03785502ec40496143ee3e4582a9a6714f370f49
parentMerge pull request #5851 from ameerj/pop-inv-stub (diff)
downloadyuzu-9914db8daa5fc58994179f8d4addc962117a64ab.tar.gz
yuzu-9914db8daa5fc58994179f8d4addc962117a64ab.tar.xz
yuzu-9914db8daa5fc58994179f8d4addc962117a64ab.zip
nifm: Fix GetAppletInfo stub
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nifm/nifm.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index ef5176bea..b22742148 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -128,7 +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, 8}; 131 std::vector<u8> out_buffer(ctx.GetWriteBufferSize());
132
133 ctx.WriteBuffer(out_buffer);
134
135 IPC::ResponseBuilder rb{ctx, 5};
132 rb.Push(RESULT_SUCCESS); 136 rb.Push(RESULT_SUCCESS);
133 rb.Push<u32>(0); 137 rb.Push<u32>(0);
134 rb.Push<u32>(0); 138 rb.Push<u32>(0);