summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-08 11:58:45 -0400
committerGravatar GitHub2018-08-08 11:58:45 -0400
commit448264e7195ef3075b39ea6aa410818ff956cf96 (patch)
tree1acd49ca071c8a0433a68bd875fec2814c7f8723 /src/core/hle/service/service.cpp
parentMerge pull request #972 from lioncash/catch (diff)
parentnvdrv: Get rid of global std::weak_ptr (diff)
downloadyuzu-448264e7195ef3075b39ea6aa410818ff956cf96.tar.gz
yuzu-448264e7195ef3075b39ea6aa410818ff956cf96.tar.xz
yuzu-448264e7195ef3075b39ea6aa410818ff956cf96.zip
Merge pull request #958 from lioncash/nv-global
nvdrv: Get rid of global std::weak_ptr
Diffstat (limited to 'src/core/hle/service/service.cpp')
-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 889cdd41a..6f286ea74 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -238,7 +238,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
238 NIFM::InstallInterfaces(*sm); 238 NIFM::InstallInterfaces(*sm);
239 NIM::InstallInterfaces(*sm); 239 NIM::InstallInterfaces(*sm);
240 NS::InstallInterfaces(*sm); 240 NS::InstallInterfaces(*sm);
241 Nvidia::InstallInterfaces(*sm); 241 Nvidia::InstallInterfaces(*sm, *nv_flinger);
242 PCIe::InstallInterfaces(*sm); 242 PCIe::InstallInterfaces(*sm);
243 PCTL::InstallInterfaces(*sm); 243 PCTL::InstallInterfaces(*sm);
244 PCV::InstallInterfaces(*sm); 244 PCV::InstallInterfaces(*sm);