summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/am/applets/error.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/applets/error.cpp b/src/core/hle/service/am/applets/error.cpp
index df0408edc..fec014f3b 100644
--- a/src/core/hle/service/am/applets/error.cpp
+++ b/src/core/hle/service/am/applets/error.cpp
@@ -41,7 +41,7 @@ struct SystemErrorArg {
41 std::array<char, 0x800> main_text; 41 std::array<char, 0x800> main_text;
42 std::array<char, 0x800> detail_text; 42 std::array<char, 0x800> detail_text;
43}; 43};
44static_assert(sizeof(SystemErrorArg) == 0x1018, "ApplicationErrorArg has incorrect size."); 44static_assert(sizeof(SystemErrorArg) == 0x1018, "SystemErrorArg has incorrect size.");
45 45
46struct ApplicationErrorArg { 46struct ApplicationErrorArg {
47 u8 mode; 47 u8 mode;
@@ -77,7 +77,7 @@ ResultCode Decode64BitError(u64 error) {
77 return {static_cast<ErrorModule>(module), static_cast<u32>(description)}; 77 return {static_cast<ErrorModule>(module), static_cast<u32>(description)};
78} 78}
79 79
80} // namespace 80} // Anonymous namespace
81 81
82Error::Error(const Core::Frontend::ErrorApplet& frontend) : frontend(frontend) {} 82Error::Error(const Core::Frontend::ErrorApplet& frontend) : frontend(frontend) {}
83 83