aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/glue/glue.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-04-24 10:26:30 -0500
committergerman77 <juangerman-13@hotmail.com>2021-04-24 10:50:25 -0500
commita02c4686c3db3babe75d0d26636bfef09b36db2b (patch)
tree034cc6429ee3bcbad532429c6ef36db4dadb60a1 /src/core/hle/service/glue/glue.cpp
parentcdce1edf74fbaad08f77f8dcd0722dbbf6e0f2a5 (diff)
glue: Add ectx:aw placeholder
Diffstat (limited to 'src/core/hle/service/glue/glue.cpp')
-rw-r--r--src/core/hle/service/glue/glue.cpp4
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