summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2019-07-07 21:39:40 -0400
committerGravatar GitHub2019-07-07 21:39:40 -0400
commit8f5aae30746f678eed69d8f311e9b5634a8dd12c (patch)
tree3755447c918a345e88cca7a5e925543ea1a9fc4f /src/core/hle/service/service.cpp
parentMerge pull request #2694 from FearlessTobi/patch-1 (diff)
parentfsp-srv: Implement GetAccessLogVersionInfo (diff)
downloadyuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.gz
yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.xz
yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.zip
Merge pull request #2642 from DarkLordZach/fsp-log-2
fsp-srv: Implement Access Logging Functionality
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 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
195// Module interface 195// Module interface
196 196
197/// Initialize ServiceManager 197/// Initialize ServiceManager
198void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system, 198void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system) {
199 FileSys::VfsFilesystem& vfs) {
200 // NVFlinger needs to be accessed by several services like Vi and AppletOE so we instantiate it 199 // NVFlinger needs to be accessed by several services like Vi and AppletOE so we instantiate it
201 // here and pass it into the respective InstallInterfaces functions. 200 // here and pass it into the respective InstallInterfaces functions.
202 auto nv_flinger = std::make_shared<NVFlinger::NVFlinger>(system.CoreTiming()); 201 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,
218 EUPLD::InstallInterfaces(*sm); 217 EUPLD::InstallInterfaces(*sm);
219 Fatal::InstallInterfaces(*sm); 218 Fatal::InstallInterfaces(*sm);
220 FGM::InstallInterfaces(*sm); 219 FGM::InstallInterfaces(*sm);
221 FileSystem::InstallInterfaces(*sm, vfs); 220 FileSystem::InstallInterfaces(system);
222 Friend::InstallInterfaces(*sm); 221 Friend::InstallInterfaces(*sm);
223 Glue::InstallInterfaces(system); 222 Glue::InstallInterfaces(system);
224 GRC::InstallInterfaces(*sm); 223 GRC::InstallInterfaces(*sm);