summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audio_in_manager.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-21 04:18:57 +0100
committerLiam <byteslice@airmail.cc>2024-02-21 04:51:39 +0100
commit2e4a6b7f92fbf73eb5173c9bda5c9b5b61f5458c (patch)
treef7a70d1218a3e52da4f4587ee9f1b8ce0dfd2c99 /src/core/hle/service/audio/audio_in_manager.cpp
parentaudio: rewrite IHardwareOpusDecoder (diff)
downloadyuzu-2e4a6b7f92fbf73eb5173c9bda5c9b5b61f5458c.tar
yuzu-2e4a6b7f92fbf73eb5173c9bda5c9b5b61f5458c.tar.gz
yuzu-2e4a6b7f92fbf73eb5173c9bda5c9b5b61f5458c.tar.bz2
yuzu-2e4a6b7f92fbf73eb5173c9bda5c9b5b61f5458c.tar.lz
yuzu-2e4a6b7f92fbf73eb5173c9bda5c9b5b61f5458c.tar.xz
yuzu-2e4a6b7f92fbf73eb5173c9bda5c9b5b61f5458c.tar.zst
yuzu-2e4a6b7f92fbf73eb5173c9bda5c9b5b61f5458c.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/audio/audio_in_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audio_in_manager.cpp b/src/core/hle/service/audio/audio_in_manager.cpp
index d55da17c8..2675a5773 100644
--- a/src/core/hle/service/audio/audio_in_manager.cpp
+++ b/src/core/hle/service/audio/audio_in_manager.cpp
@@ -10,8 +10,8 @@ namespace Service::Audio {
using namespace AudioCore::AudioIn;
IAudioInManager::IAudioInManager(Core::System& system_)
- : ServiceFramework{system_, "audin:u"},
- impl{std::make_unique<AudioCore::AudioIn::Manager>(system_)} {
+ : ServiceFramework{system_, "audin:u"}, impl{std::make_unique<AudioCore::AudioIn::Manager>(
+ system_)} {
// clang-format off
static const FunctionInfo functions[] = {
{0, D<&IAudioInManager::ListAudioIns>, "ListAudioIns"},