summaryrefslogtreecommitdiff
path: root/src/core/reporter.h
diff options
context:
space:
mode:
authorGravatar Liam2023-02-19 14:42:12 -0500
committerGravatar Liam2023-03-01 10:39:49 -0500
commit65be230fdda302b25447f2f09b06e3238bd09e79 (patch)
tree68250d7bc8151041b236dcd79483df98938952cd /src/core/reporter.h
parentsm:: remove unused member (diff)
downloadyuzu-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.h6
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
13union Result; 13union Result;
14 14
15namespace Kernel { 15namespace Service {
16class HLERequestContext; 16class HLERequestContext;
17} // namespace Kernel 17} // namespace Service
18 18
19namespace Service::LM { 19namespace Service::LM {
20struct LogMessage; 20struct 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