aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-08 11:58:45 -0400
committerGitHub <noreply@github.com>2018-08-08 11:58:45 -0400
commit448264e7195ef3075b39ea6aa410818ff956cf96 (patch)
tree1acd49ca071c8a0433a68bd875fec2814c7f8723 /src/core/hle/service/service.cpp
parentf156a45c0155c7fe227dfb74a92d797e3d3f2032 (diff)
parentd378d98e2628f83fa56242ec6b53e3cce7c6bb56 (diff)
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) {
NIFM::InstallInterfaces(*sm);
NIM::InstallInterfaces(*sm);
NS::InstallInterfaces(*sm);
- Nvidia::InstallInterfaces(*sm);
+ Nvidia::InstallInterfaces(*sm, *nv_flinger);
PCIe::InstallInterfaces(*sm);
PCTL::InstallInterfaces(*sm);
PCV::InstallInterfaces(*sm);