summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/error.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-17 20:37:17 +0200
committerGitHub <noreply@github.com>2021-04-17 20:37:17 +0200
commitce921e0f2619fc52a70e5545711e284b320328d4 (patch)
treed5874637e6426893df41b7080ae9287836cc9edc /src/core/hle/service/am/applets/error.cpp
parentMerge pull request #6125 from ogniK5377/nvdec-close-dev (diff)
parentapplets: Send focus state change message on applet state change (diff)
downloadyuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.gz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.bz2
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.lz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.xz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.zst
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/applets/error.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/error.cpp b/src/core/hle/service/am/applets/error.cpp
index a9f0a9c95..23e30aa45 100644
--- a/src/core/hle/service/am/applets/error.cpp
+++ b/src/core/hle/service/am/applets/error.cpp
@@ -88,7 +88,7 @@ ResultCode Decode64BitError(u64 error) {
Error::Error(Core::System& system_, LibraryAppletMode applet_mode_,
const Core::Frontend::ErrorApplet& frontend_)
- : Applet{system_.Kernel()}, applet_mode{applet_mode_}, frontend{frontend_}, system{system_} {}
+ : Applet{system_, applet_mode_}, frontend{frontend_}, system{system_} {}
Error::~Error() = default;