summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 08:55:15 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 08:55:15 +0200
commite73ac40eaa652ffc0ca8bcbcca749c75333205e3 (patch)
treea158508166d570f8ad32f3b387f3cc8c31484d6e /src/core/hle/service/service.cpp
parentmarked controller constructors as explicit (diff)
downloadyuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.tar
yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.tar.gz
yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.tar.bz2
yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.tar.lz
yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.tar.xz
yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.tar.zst
yuzu-e73ac40eaa652ffc0ca8bcbcca749c75333205e3.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/service.cpp2
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
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(), system);
+ auto nv_flinger = std::make_shared<NVFlinger::NVFlinger>(system);
system.GetFileSystemController().CreateFactories(*system.GetFilesystem(), false);
SM::ServiceManager::InstallInterfaces(sm);