aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-19 03:22:57 -0400
committerLioncash <mathew1800@gmail.com>2019-07-19 07:29:36 -0400
commited0485c5993cca8c544ca5a641357034519730a5 (patch)
tree9d7f7184325b4f1271bd0d9ec9287dd41c2accee /src/core/hle/service/service.cpp
parent7653e4babc98da1e4c50301263e627b35b7bd2ba (diff)
service/audio: Remove global system accessors
Trims out the lingering reliance on global state out of the audio code.
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 7eefd733f..d343392fd 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -206,7 +206,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system) {
AM::InstallInterfaces(*sm, nv_flinger, system);
AOC::InstallInterfaces(*sm);
APM::InstallInterfaces(system);
- Audio::InstallInterfaces(*sm);
+ Audio::InstallInterfaces(*sm, system);
BCAT::InstallInterfaces(*sm);
BPC::InstallInterfaces(*sm);
BtDrv::InstallInterfaces(*sm);