diff options
| author | 2024-01-26 09:55:25 -0500 | |
|---|---|---|
| committer | 2024-01-26 09:55:25 -0500 | |
| commit | 55482ab5dce463d5014498b006c18a90d0d004e6 (patch) | |
| tree | b343faa9cadc692265efb4b6b88e157c97ef76d2 /src/core/frontend | |
| parent | Merge pull request #12796 from t895/controller-optimizations (diff) | |
| parent | Address review comments and fix compilation problems (diff) | |
| download | yuzu-55482ab5dce463d5014498b006c18a90d0d004e6.tar.gz yuzu-55482ab5dce463d5014498b006c18a90d0d004e6.tar.xz yuzu-55482ab5dce463d5014498b006c18a90d0d004e6.zip | |
Merge pull request #12707 from FearlessTobi/fs-housekeeping
fs: Various cleanups & add path class for later use
Diffstat (limited to 'src/core/frontend')
| -rw-r--r-- | src/core/frontend/applets/error.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/frontend/applets/error.cpp b/src/core/frontend/applets/error.cpp index 2e6f7a3d9..53d4be2e5 100644 --- a/src/core/frontend/applets/error.cpp +++ b/src/core/frontend/applets/error.cpp | |||
| @@ -12,7 +12,7 @@ void DefaultErrorApplet::Close() const {} | |||
| 12 | 12 | ||
| 13 | void DefaultErrorApplet::ShowError(Result error, FinishedCallback finished) const { | 13 | void DefaultErrorApplet::ShowError(Result error, FinishedCallback finished) const { |
| 14 | LOG_CRITICAL(Service_Fatal, "Application requested error display: {:04}-{:04} (raw={:08X})", | 14 | LOG_CRITICAL(Service_Fatal, "Application requested error display: {:04}-{:04} (raw={:08X})", |
| 15 | error.module.Value(), error.description.Value(), error.raw); | 15 | error.GetModule(), error.GetDescription(), error.raw); |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | void DefaultErrorApplet::ShowErrorWithTimestamp(Result error, std::chrono::seconds time, | 18 | void DefaultErrorApplet::ShowErrorWithTimestamp(Result error, std::chrono::seconds time, |
| @@ -20,7 +20,7 @@ void DefaultErrorApplet::ShowErrorWithTimestamp(Result error, std::chrono::secon | |||
| 20 | LOG_CRITICAL( | 20 | LOG_CRITICAL( |
| 21 | Service_Fatal, | 21 | Service_Fatal, |
| 22 | "Application requested error display: {:04X}-{:04X} (raw={:08X}) with timestamp={:016X}", | 22 | "Application requested error display: {:04X}-{:04X} (raw={:08X}) with timestamp={:016X}", |
| 23 | error.module.Value(), error.description.Value(), error.raw, time.count()); | 23 | error.GetModule(), error.GetDescription(), error.raw, time.count()); |
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | void DefaultErrorApplet::ShowCustomErrorText(Result error, std::string main_text, | 26 | void DefaultErrorApplet::ShowCustomErrorText(Result error, std::string main_text, |
| @@ -28,7 +28,7 @@ void DefaultErrorApplet::ShowCustomErrorText(Result error, std::string main_text | |||
| 28 | FinishedCallback finished) const { | 28 | FinishedCallback finished) const { |
| 29 | LOG_CRITICAL(Service_Fatal, | 29 | LOG_CRITICAL(Service_Fatal, |
| 30 | "Application requested custom error with error_code={:04X}-{:04X} (raw={:08X})", | 30 | "Application requested custom error with error_code={:04X}-{:04X} (raw={:08X})", |
| 31 | error.module.Value(), error.description.Value(), error.raw); | 31 | error.GetModule(), error.GetDescription(), error.raw); |
| 32 | LOG_CRITICAL(Service_Fatal, " Main Text: {}", main_text); | 32 | LOG_CRITICAL(Service_Fatal, " Main Text: {}", main_text); |
| 33 | LOG_CRITICAL(Service_Fatal, " Detail Text: {}", detail_text); | 33 | LOG_CRITICAL(Service_Fatal, " Detail Text: {}", detail_text); |
| 34 | } | 34 | } |