diff options
| author | 2019-09-22 16:55:15 +1000 | |
|---|---|---|
| committer | 2019-09-22 16:55:15 +1000 | |
| commit | e73ac40eaa652ffc0ca8bcbcca749c75333205e3 (patch) | |
| tree | a158508166d570f8ad32f3b387f3cc8c31484d6e /src | |
| parent | marked controller constructors as explicit (diff) | |
| download | yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.tar.gz yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.tar.xz yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.zip | |
Removed reference to core timing to nvflinger and used system instead
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index b4e085502..831a427de 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -198,7 +198,7 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::HLERequestContext& co | |||
| 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 | // 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 |
| 200 | // here and pass it into the respective InstallInterfaces functions. | 200 | // here and pass it into the respective InstallInterfaces functions. |
| 201 | auto nv_flinger = std::make_shared<NVFlinger::NVFlinger>(system.CoreTiming(), system); | 201 | auto nv_flinger = std::make_shared<NVFlinger::NVFlinger>(system); |
| 202 | system.GetFileSystemController().CreateFactories(*system.GetFilesystem(), false); | 202 | system.GetFileSystemController().CreateFactories(*system.GetFilesystem(), false); |
| 203 | 203 | ||
| 204 | SM::ServiceManager::InstallInterfaces(sm); | 204 | SM::ServiceManager::InstallInterfaces(sm); |