diff options
| author | 2018-04-02 23:30:27 -0400 | |
|---|---|---|
| committer | 2018-04-02 23:50:59 -0400 | |
| commit | 910b02d74b38fc37915be35a2d2a5fa027e37252 (patch) | |
| tree | 3fb96ff9822600ca789337fd76fd477e90a6b970 /src | |
| parent | vi: Implement GetDisplayResolution. (diff) | |
| download | yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.tar.gz yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.tar.xz yuzu-910b02d74b38fc37915be35a2d2a5fa027e37252.zip | |
nifm: GetResult does not return a data field.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/nifm/nifm.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp index dd2d5fe63..b32112db3 100644 --- a/src/core/hle/service/nifm/nifm.cpp +++ b/src/core/hle/service/nifm/nifm.cpp | |||
| @@ -70,9 +70,8 @@ private: | |||
| 70 | } | 70 | } |
| 71 | void GetResult(Kernel::HLERequestContext& ctx) { | 71 | void GetResult(Kernel::HLERequestContext& ctx) { |
| 72 | LOG_WARNING(Service_NIFM, "(STUBBED) called"); | 72 | LOG_WARNING(Service_NIFM, "(STUBBED) called"); |
| 73 | IPC::ResponseBuilder rb{ctx, 3}; | 73 | IPC::ResponseBuilder rb{ctx, 2}; |
| 74 | rb.Push(RESULT_SUCCESS); | 74 | rb.Push(RESULT_SUCCESS); |
| 75 | rb.Push<u32>(0); | ||
| 76 | } | 75 | } |
| 77 | void GetSystemEventReadableHandles(Kernel::HLERequestContext& ctx) { | 76 | void GetSystemEventReadableHandles(Kernel::HLERequestContext& ctx) { |
| 78 | LOG_WARNING(Service_NIFM, "(STUBBED) called"); | 77 | LOG_WARNING(Service_NIFM, "(STUBBED) called"); |