diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-05 23:09:24 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-05 23:09:26 +0200 |
commit | e721c344ae2f7267bdf40508eda08bd6c3c6e491 (patch) | |
tree | d234c9e4f0b488c8045e6b851e7f79d46bc5f628 | |
parent | core/reporter: Remove pessimizing move in GetHLERequestContextData() (diff) | |
download | yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.tar yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.tar.gz yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.tar.bz2 yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.tar.lz yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.tar.xz yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.tar.zst yuzu-e721c344ae2f7267bdf40508eda08bd6c3c6e491.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/reporter.cpp | 2 | ||||
-rw-r--r-- | src/core/reporter.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp index 96b71037a..d79a9336d 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp @@ -183,7 +183,7 @@ json GetHLERequestContextData(Kernel::HLERequestContext& ctx) { namespace Core { -Reporter::Reporter(Core::System& system) : system(system) {} +Reporter::Reporter(System& system) : system(system) {} Reporter::~Reporter() = default; diff --git a/src/core/reporter.h b/src/core/reporter.h index 3de19c0f7..9487a11b6 100644 --- a/src/core/reporter.h +++ b/src/core/reporter.h @@ -18,7 +18,7 @@ namespace Core { class Reporter { public: - explicit Reporter(Core::System& system); + explicit Reporter(System& system); ~Reporter(); void SaveCrashReport(u64 title_id, ResultCode result, u64 set_flags, u64 entry_point, u64 sp, @@ -50,7 +50,7 @@ public: private: bool IsReportingEnabled() const; - Core::System& system; + System& system; }; } // namespace Core |