diff options
author | Mat M <mathew1800@gmail.com> | 2021-04-24 18:37:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 18:37:12 +0200 |
commit | 98fb36cb0a230b9a968818490a238622de2ed6d4 (patch) | |
tree | b472d6a53cd1aff5ff9a83a46388abea3d9695a6 /src/core/hle/service/glue/glue.cpp | |
parent | Merge pull request #6230 from Morph1984/default-resource-size (diff) | |
parent | glue: Add ectx:aw placeholder (diff) | |
download | yuzu-98fb36cb0a230b9a968818490a238622de2ed6d4.tar yuzu-98fb36cb0a230b9a968818490a238622de2ed6d4.tar.gz yuzu-98fb36cb0a230b9a968818490a238622de2ed6d4.tar.bz2 yuzu-98fb36cb0a230b9a968818490a238622de2ed6d4.tar.lz yuzu-98fb36cb0a230b9a968818490a238622de2ed6d4.tar.xz yuzu-98fb36cb0a230b9a968818490a238622de2ed6d4.tar.zst yuzu-98fb36cb0a230b9a968818490a238622de2ed6d4.zip |
Diffstat (limited to 'src/core/hle/service/glue/glue.cpp')
-rw-r--r-- | src/core/hle/service/glue/glue.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/glue/glue.cpp b/src/core/hle/service/glue/glue.cpp index 4eafbe5fa..a08dc9758 100644 --- a/src/core/hle/service/glue/glue.cpp +++ b/src/core/hle/service/glue/glue.cpp @@ -6,6 +6,7 @@ #include "core/core.h" #include "core/hle/service/glue/arp.h" #include "core/hle/service/glue/bgtc.h" +#include "core/hle/service/glue/ectx.h" #include "core/hle/service/glue/glue.h" namespace Service::Glue { @@ -20,6 +21,9 @@ void InstallInterfaces(Core::System& system) { // BackGround Task Controller std::make_shared<BGTC_T>(system)->InstallAsService(system.ServiceManager()); std::make_shared<BGTC_SC>(system)->InstallAsService(system.ServiceManager()); + + // Error Context + std::make_shared<ECTX_AW>(system)->InstallAsService(system.ServiceManager()); } } // namespace Service::Glue |