summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-29 03:02:34 +0200
committerZach Hilman <zachhilman@gmail.com>2019-06-29 03:02:34 +0200
commitdb2fdd0352d023787fcac032101e1e36fb8aa03f (patch)
treefe785b7af5776cb9dc76de107ca5124d8d56a5ed /src/core/hle/service/service.cpp
parentMerge pull request #2548 from DarkLordZach/applet-shopn (diff)
downloadyuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.tar
yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.tar.gz
yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.tar.bz2
yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.tar.lz
yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.tar.xz
yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.tar.zst
yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index ec9d755b7..60155f2d0 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -195,8 +195,7 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::HLERequestContext& co
// Module interface
/// Initialize ServiceManager
-void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system,
- FileSys::VfsFilesystem& vfs) {
+void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system) {
// NVFlinger needs to be accessed by several services like Vi and AppletOE so we instantiate it
// here and pass it into the respective InstallInterfaces functions.
auto nv_flinger = std::make_shared<NVFlinger::NVFlinger>(system.CoreTiming());
@@ -218,7 +217,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system,
EUPLD::InstallInterfaces(*sm);
Fatal::InstallInterfaces(*sm);
FGM::InstallInterfaces(*sm);
- FileSystem::InstallInterfaces(*sm, vfs);
+ FileSystem::InstallInterfaces(system);
Friend::InstallInterfaces(*sm);
Glue::InstallInterfaces(system);
GRC::InstallInterfaces(*sm);