Add missing boss:U service, needed according to Nintendo Zone logs.

This commit is contained in:
archshift 2014-11-16 22:06:54 -08:00
parent 8717c79fe4
commit e27f169acb
4 changed files with 59 additions and 0 deletions

View file

@ -8,6 +8,7 @@
#include "core/hle/service/service.h"
#include "core/hle/service/ac_u.h"
#include "core/hle/service/apt_u.h"
#include "core/hle/service/boss_u.h"
#include "core/hle/service/cfg_u.h"
#include "core/hle/service/dsp_dsp.h"
#include "core/hle/service/err_f.h"
@ -78,6 +79,7 @@ void Init() {
g_manager->AddService(new SRV::Interface);
g_manager->AddService(new AC_U::Interface);
g_manager->AddService(new APT_U::Interface);
g_manager->AddService(new BOSS_U::Interface);
g_manager->AddService(new CFG_U::Interface);
g_manager->AddService(new DSP_DSP::Interface);
g_manager->AddService(new ERR_F::Interface);