mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 17:15:47 +00:00
nifm: Fix GetAppletInfo stub
This commit is contained in:
parent
e2b1734183
commit
3bd2f586a1
1 changed files with 5 additions and 1 deletions
|
@ -128,7 +128,11 @@ private:
|
|||
void GetAppletInfo(Kernel::HLERequestContext& ctx) {
|
||||
LOG_WARNING(Service_NIFM, "(STUBBED) called");
|
||||
|
||||
IPC::ResponseBuilder rb{ctx, 8};
|
||||
std::vector<u8> out_buffer(ctx.GetWriteBufferSize());
|
||||
|
||||
ctx.WriteBuffer(out_buffer);
|
||||
|
||||
IPC::ResponseBuilder rb{ctx, 5};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.Push<u32>(0);
|
||||
rb.Push<u32>(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue