diff options
| author | 2023-02-19 14:42:12 -0500 | |
|---|---|---|
| committer | 2023-03-01 10:39:49 -0500 | |
| commit | 65be230fdda302b25447f2f09b06e3238bd09e79 (patch) | |
| tree | 68250d7bc8151041b236dcd79483df98938952cd /src/core/hle/service/mnpp | |
| parent | sm:: remove unused member (diff) | |
| download | yuzu-65be230fdda302b25447f2f09b06e3238bd09e79.tar.gz yuzu-65be230fdda302b25447f2f09b06e3238bd09e79.tar.xz yuzu-65be230fdda302b25447f2f09b06e3238bd09e79.zip | |
service: move hle_ipc from kernel
Diffstat (limited to 'src/core/hle/service/mnpp')
| -rw-r--r-- | src/core/hle/service/mnpp/mnpp_app.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/mnpp/mnpp_app.cpp b/src/core/hle/service/mnpp/mnpp_app.cpp index 4ce4672b7..b11a92056 100644 --- a/src/core/hle/service/mnpp/mnpp_app.cpp +++ b/src/core/hle/service/mnpp/mnpp_app.cpp | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | 2 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 3 | 3 | ||
| 4 | #include "common/logging/log.h" | 4 | #include "common/logging/log.h" |
| 5 | #include "core/hle/ipc_helpers.h" | 5 | #include "core/hle/service/ipc_helpers.h" |
| 6 | #include "core/hle/service/mnpp/mnpp_app.h" | 6 | #include "core/hle/service/mnpp/mnpp_app.h" |
| 7 | #include "core/hle/service/server_manager.h" | 7 | #include "core/hle/service/server_manager.h" |
| 8 | #include "core/hle/service/service.h" | 8 | #include "core/hle/service/service.h" |
| @@ -23,14 +23,14 @@ public: | |||
| 23 | } | 23 | } |
| 24 | 24 | ||
| 25 | private: | 25 | private: |
| 26 | void Unknown0(Kernel::HLERequestContext& ctx) { | 26 | void Unknown0(HLERequestContext& ctx) { |
| 27 | LOG_WARNING(Service_MNPP, "(STUBBED) called"); | 27 | LOG_WARNING(Service_MNPP, "(STUBBED) called"); |
| 28 | 28 | ||
| 29 | IPC::ResponseBuilder rb{ctx, 2}; | 29 | IPC::ResponseBuilder rb{ctx, 2}; |
| 30 | rb.Push(ResultSuccess); | 30 | rb.Push(ResultSuccess); |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | void Unknown1(Kernel::HLERequestContext& ctx) { | 33 | void Unknown1(HLERequestContext& ctx) { |
| 34 | LOG_WARNING(Service_MNPP, "(STUBBED) called"); | 34 | LOG_WARNING(Service_MNPP, "(STUBBED) called"); |
| 35 | 35 | ||
| 36 | IPC::ResponseBuilder rb{ctx, 2}; | 36 | IPC::ResponseBuilder rb{ctx, 2}; |