From a02c4686c3db3babe75d0d26636bfef09b36db2b Mon Sep 17 00:00:00 2001 From: german77 Date: Sat, 24 Apr 2021 10:26:30 -0500 Subject: glue: Add ectx:aw placeholder --- src/core/hle/service/glue/glue.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/hle/service/glue/glue.cpp') 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(system)->InstallAsService(system.ServiceManager()); std::make_shared(system)->InstallAsService(system.ServiceManager()); + + // Error Context + std::make_shared(system)->InstallAsService(system.ServiceManager()); } } // namespace Service::Glue -- cgit v1.2.3