summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-03-12 00:45:22 +0100
committerZach Hilman <zachhilman@gmail.com>2019-04-17 17:35:24 +0200
commit8f8049e846f38d548e975243bc42ce1b09a71ae3 (patch)
tree76f18dd10a51460024e440d4ea51eb7de4e92791 /src/core/hle/service/am/applets
parentmain: Switch to AppletManager for frontend (diff)
downloadyuzu-8f8049e846f38d548e975243bc42ce1b09a71ae3.tar
yuzu-8f8049e846f38d548e975243bc42ce1b09a71ae3.tar.gz
yuzu-8f8049e846f38d548e975243bc42ce1b09a71ae3.tar.bz2
yuzu-8f8049e846f38d548e975243bc42ce1b09a71ae3.tar.lz
yuzu-8f8049e846f38d548e975243bc42ce1b09a71ae3.tar.xz
yuzu-8f8049e846f38d548e975243bc42ce1b09a71ae3.tar.zst
yuzu-8f8049e846f38d548e975243bc42ce1b09a71ae3.zip
Diffstat (limited to 'src/core/hle/service/am/applets')
-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 {
std::array<char, 0x800> main_text;
std::array<char, 0x800> detail_text;
};
-static_assert(sizeof(SystemErrorArg) == 0x1018, "ApplicationErrorArg has incorrect size.");
+static_assert(sizeof(SystemErrorArg) == 0x1018, "SystemErrorArg has incorrect size.");
struct ApplicationErrorArg {
u8 mode;
@@ -77,7 +77,7 @@ ResultCode Decode64BitError(u64 error) {
return {static_cast<ErrorModule>(module), static_cast<u32>(description)};
}
-} // namespace
+} // Anonymous namespace
Error::Error(const Core::Frontend::ErrorApplet& frontend) : frontend(frontend) {}