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/reporter.h | |
| 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/reporter.h')
| -rw-r--r-- | src/core/reporter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/reporter.h b/src/core/reporter.h index bb11f8e7c..db1ca3ba0 100644 --- a/src/core/reporter.h +++ b/src/core/reporter.h | |||
| @@ -12,9 +12,9 @@ | |||
| 12 | 12 | ||
| 13 | union Result; | 13 | union Result; |
| 14 | 14 | ||
| 15 | namespace Kernel { | 15 | namespace Service { |
| 16 | class HLERequestContext; | 16 | class HLERequestContext; |
| 17 | } // namespace Kernel | 17 | } // namespace Service |
| 18 | 18 | ||
| 19 | namespace Service::LM { | 19 | namespace Service::LM { |
| 20 | struct LogMessage; | 20 | struct LogMessage; |
| @@ -40,7 +40,7 @@ public: | |||
| 40 | const std::optional<std::vector<u8>>& resolved_buffer = {}) const; | 40 | const std::optional<std::vector<u8>>& resolved_buffer = {}) const; |
| 41 | 41 | ||
| 42 | // Used by HLE service handler | 42 | // Used by HLE service handler |
| 43 | void SaveUnimplementedFunctionReport(Kernel::HLERequestContext& ctx, u32 command_id, | 43 | void SaveUnimplementedFunctionReport(Service::HLERequestContext& ctx, u32 command_id, |
| 44 | const std::string& name, | 44 | const std::string& name, |
| 45 | const std::string& service_name) const; | 45 | const std::string& service_name) const; |
| 46 | 46 | ||