diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-07-19 03:22:57 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-07-19 07:29:36 -0400 |
| commit | ed0485c5993cca8c544ca5a641357034519730a5 (patch) | |
| tree | 9d7f7184325b4f1271bd0d9ec9287dd41c2accee /src/core/hle/service/service.cpp | |
| parent | 7653e4babc98da1e4c50301263e627b35b7bd2ba (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.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 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); |
