summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-03-20 14:55:20 +0100
committermailwl <mailwl@gmail.com>2018-03-20 14:59:02 +0100
commitdca7cfb9cfea5a798db45926b2f5399c1e233e99 (patch)
tree1ce233502d929b2146864f3dfa5389c869519ee4 /src/core/hle/service/service.cpp
parentMerge pull request #253 from Subv/rt_depth (diff)
downloadyuzu-dca7cfb9cfea5a798db45926b2f5399c1e233e99.tar
yuzu-dca7cfb9cfea5a798db45926b2f5399c1e233e99.tar.gz
yuzu-dca7cfb9cfea5a798db45926b2f5399c1e233e99.tar.bz2
yuzu-dca7cfb9cfea5a798db45926b2f5399c1e233e99.tar.lz
yuzu-dca7cfb9cfea5a798db45926b2f5399c1e233e99.tar.xz
yuzu-dca7cfb9cfea5a798db45926b2f5399c1e233e99.tar.zst
yuzu-dca7cfb9cfea5a798db45926b2f5399c1e233e99.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index d4b08aadf..4846fe092 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -20,6 +20,7 @@
#include "core/hle/service/aoc/aoc_u.h"
#include "core/hle/service/apm/apm.h"
#include "core/hle/service/audio/audio.h"
+#include "core/hle/service/fatal/fatal.h"
#include "core/hle/service/filesystem/filesystem.h"
#include "core/hle/service/friend/friend.h"
#include "core/hle/service/hid/hid.h"
@@ -179,6 +180,7 @@ void Init() {
AOC::InstallInterfaces(*SM::g_service_manager);
APM::InstallInterfaces(*SM::g_service_manager);
Audio::InstallInterfaces(*SM::g_service_manager);
+ Fatal::InstallInterfaces(*SM::g_service_manager);
FileSystem::InstallInterfaces(*SM::g_service_manager);
Friend::InstallInterfaces(*SM::g_service_manager);
HID::InstallInterfaces(*SM::g_service_manager);