diff options
| author | 2018-09-21 00:51:13 +1000 | |
|---|---|---|
| committer | 2018-09-21 00:51:13 +1000 | |
| commit | 3f49725a515add64ef1e2f904de56508e13dd259 (patch) | |
| tree | 1109763ccb64760a2302b8543af477aff7f03d14 /src | |
| parent | Added IRequest::Submit (diff) | |
| download | yuzu-3f49725a515add64ef1e2f904de56508e13dd259.tar.gz yuzu-3f49725a515add64ef1e2f904de56508e13dd259.tar.xz yuzu-3f49725a515add64ef1e2f904de56508e13dd259.zip | |
Fixed submit
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 696649db6..d5b8ef186 100644 --- a/src/core/hle/service/nifm/nifm.cpp +++ b/src/core/hle/service/nifm/nifm.cpp | |||
| @@ -63,9 +63,8 @@ public: | |||
| 63 | private: | 63 | private: |
| 64 | void Submit(Kernel::HLERequestContext& ctx) { | 64 | void Submit(Kernel::HLERequestContext& ctx) { |
| 65 | LOG_WARNING(Service_NIFM, "(STUBBED) called"); | 65 | LOG_WARNING(Service_NIFM, "(STUBBED) called"); |
| 66 | IPC::ResponseBuilder rb{ctx, 3}; | 66 | IPC::ResponseBuilder rb{ctx, 2}; |
| 67 | rb.Push(RESULT_SUCCESS); | 67 | rb.Push(RESULT_SUCCESS); |
| 68 | rb.Push<u32>(3); | ||
| 69 | } | 68 | } |
| 70 | 69 | ||
| 71 | void GetRequestState(Kernel::HLERequestContext& ctx) { | 70 | void GetRequestState(Kernel::HLERequestContext& ctx) { |