diff options
| author | 2019-06-28 21:02:34 -0400 | |
|---|---|---|
| committer | 2019-06-28 21:02:34 -0400 | |
| commit | db2fdd0352d023787fcac032101e1e36fb8aa03f (patch) | |
| tree | fe785b7af5776cb9dc76de107ca5124d8d56a5ed /src/core/hle/service/service.cpp | |
| parent | Merge pull request #2548 from DarkLordZach/applet-shopn (diff) | |
| download | yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.tar.gz yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.tar.xz yuzu-db2fdd0352d023787fcac032101e1e36fb8aa03f.zip | |
fsp-srv: Implement OutputAccessLogToSdCard
Allows games to log data to the SD.
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 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 | |||
| 195 | // Module interface | 195 | // Module interface |
| 196 | 196 | ||
| 197 | /// Initialize ServiceManager | 197 | /// Initialize ServiceManager |
| 198 | void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system, | 198 | void 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); |