diff options
| -rw-r--r-- | src/core/hle/service/nifm/nifm.cpp | 6 |
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); |