summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audio.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-02-15 02:51:07 +0100
committergerman77 <juangerman-13@hotmail.com>2024-02-17 22:05:13 +0100
commit4cbafc1ef60e7edcf736c27607b840c869918f83 (patch)
tree08c0ec1c9777899af1e3776ed4483bb943c19528 /src/core/hle/service/audio/audio.cpp
parentMerge pull request #13016 from german77/set-interface2 (diff)
downloadyuzu-4cbafc1ef60e7edcf736c27607b840c869918f83.tar
yuzu-4cbafc1ef60e7edcf736c27607b840c869918f83.tar.gz
yuzu-4cbafc1ef60e7edcf736c27607b840c869918f83.tar.bz2
yuzu-4cbafc1ef60e7edcf736c27607b840c869918f83.tar.lz
yuzu-4cbafc1ef60e7edcf736c27607b840c869918f83.tar.xz
yuzu-4cbafc1ef60e7edcf736c27607b840c869918f83.tar.zst
yuzu-4cbafc1ef60e7edcf736c27607b840c869918f83.zip
Diffstat (limited to 'src/core/hle/service/audio/audio.cpp')
-rw-r--r--src/core/hle/service/audio/audio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audio.cpp b/src/core/hle/service/audio/audio.cpp
index dccd16309..44af030eb 100644
--- a/src/core/hle/service/audio/audio.cpp
+++ b/src/core/hle/service/audio/audio.cpp
@@ -2,9 +2,9 @@
// SPDX-License-Identifier: GPL-2.0-or-later
#include "core/core.h"
-#include "core/hle/service/audio/audctl.h"
#include "core/hle/service/audio/audin_u.h"
#include "core/hle/service/audio/audio.h"
+#include "core/hle/service/audio/audio_controller.h"
#include "core/hle/service/audio/audout_u.h"
#include "core/hle/service/audio/audrec_a.h"
#include "core/hle/service/audio/audrec_u.h"
@@ -18,7 +18,7 @@ namespace Service::Audio {
void LoopProcess(Core::System& system) {
auto server_manager = std::make_unique<ServerManager>(system);
- server_manager->RegisterNamedService("audctl", std::make_shared<AudCtl>(system));
+ server_manager->RegisterNamedService("audctl", std::make_shared<IAudioController>(system));
server_manager->RegisterNamedService("audout:u", std::make_shared<AudOutU>(system));
server_manager->RegisterNamedService("audin:u", std::make_shared<AudInU>(system));
server_manager->RegisterNamedService("audrec:a", std::make_shared<AudRecA>(system));