From 417571297661ed13f1426d6ec7ffc748f4eea0f0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 25 Jul 2018 15:30:50 -0400 Subject: service: Add the es service Adds the skeleton for the ETicket service based off the information on Switch Brew --- src/core/hle/service/service.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/hle/service/service.cpp') diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 0d036bfaa..b70d0d517 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -21,6 +21,7 @@ #include "core/hle/service/apm/apm.h" #include "core/hle/service/audio/audio.h" #include "core/hle/service/bcat/bcat.h" +#include "core/hle/service/es/es.h" #include "core/hle/service/fatal/fatal.h" #include "core/hle/service/filesystem/filesystem.h" #include "core/hle/service/friend/friend.h" @@ -187,6 +188,7 @@ void Init(std::shared_ptr& sm) { APM::InstallInterfaces(*sm); BCAT::InstallInterfaces(*sm); Audio::InstallInterfaces(*sm); + ES::InstallInterfaces(*sm); Fatal::InstallInterfaces(*sm); FileSystem::InstallInterfaces(*sm); Friend::InstallInterfaces(*sm); -- cgit v1.2.3