Browse Source
Merge pull request #5856 from Morph1984/nifm-fix-getappletinfo-stub
nifm: Fix GetAppletInfo stub
pull/15/merge
Ameer J
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
src/core/hle/service/nifm/nifm.cpp
|
|
|
@ -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); |
|
|
|
|