summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index b2954eb34..beae9c510 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -19,7 +19,6 @@
19#include "core/hle/service/am/am.h" 19#include "core/hle/service/am/am.h"
20#include "core/hle/service/aoc/aoc_u.h" 20#include "core/hle/service/aoc/aoc_u.h"
21#include "core/hle/service/apm/apm.h" 21#include "core/hle/service/apm/apm.h"
22#include "core/hle/service/arp/arp.h"
23#include "core/hle/service/audio/audio.h" 22#include "core/hle/service/audio/audio.h"
24#include "core/hle/service/bcat/module.h" 23#include "core/hle/service/bcat/module.h"
25#include "core/hle/service/bpc/bpc.h" 24#include "core/hle/service/bpc/bpc.h"
@@ -33,6 +32,7 @@
33#include "core/hle/service/fgm/fgm.h" 32#include "core/hle/service/fgm/fgm.h"
34#include "core/hle/service/filesystem/filesystem.h" 33#include "core/hle/service/filesystem/filesystem.h"
35#include "core/hle/service/friend/friend.h" 34#include "core/hle/service/friend/friend.h"
35#include "core/hle/service/glue/glue.h"
36#include "core/hle/service/grc/grc.h" 36#include "core/hle/service/grc/grc.h"
37#include "core/hle/service/hid/hid.h" 37#include "core/hle/service/hid/hid.h"
38#include "core/hle/service/lbl/lbl.h" 38#include "core/hle/service/lbl/lbl.h"
@@ -207,7 +207,6 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system,
207 AM::InstallInterfaces(*sm, nv_flinger); 207 AM::InstallInterfaces(*sm, nv_flinger);
208 AOC::InstallInterfaces(*sm); 208 AOC::InstallInterfaces(*sm);
209 APM::InstallInterfaces(*sm); 209 APM::InstallInterfaces(*sm);
210 ARP::InstallInterfaces(*sm);
211 Audio::InstallInterfaces(*sm); 210 Audio::InstallInterfaces(*sm);
212 BCAT::InstallInterfaces(*sm); 211 BCAT::InstallInterfaces(*sm);
213 BPC::InstallInterfaces(*sm); 212 BPC::InstallInterfaces(*sm);
@@ -221,6 +220,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system,
221 FGM::InstallInterfaces(*sm); 220 FGM::InstallInterfaces(*sm);
222 FileSystem::InstallInterfaces(*sm, vfs); 221 FileSystem::InstallInterfaces(*sm, vfs);
223 Friend::InstallInterfaces(*sm); 222 Friend::InstallInterfaces(*sm);
223 Glue::InstallInterfaces(system);
224 GRC::InstallInterfaces(*sm); 224 GRC::InstallInterfaces(*sm);
225 HID::InstallInterfaces(*sm); 225 HID::InstallInterfaces(*sm);
226 LBL::InstallInterfaces(*sm); 226 LBL::InstallInterfaces(*sm);