diff options
author | bunnei <bunneidev@gmail.com> | 2019-07-08 03:39:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-08 03:39:40 +0200 |
commit | 8f5aae30746f678eed69d8f311e9b5634a8dd12c (patch) | |
tree | 3755447c918a345e88cca7a5e925543ea1a9fc4f /src/core/hle/service/service.cpp | |
parent | Merge pull request #2694 from FearlessTobi/patch-1 (diff) | |
parent | fsp-srv: Implement GetAccessLogVersionInfo (diff) | |
download | yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.gz yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.bz2 yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.lz yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.xz yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.zst yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.zip |
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r-- | src/core/hle/service/service.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 5fc7d3cab..dc2f2280a 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); |