aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/audio/audin_u.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-12-14 14:57:33 -0800
committerGitHub <noreply@github.com>2022-12-14 14:57:33 -0800
commitbeba9c9b61318164557df3933bf3f5eb660b5eec (patch)
tree0e07c1af31737e2fddc50d032522cfc4b95a1c29 /src/core/hle/service/audio/audin_u.cpp
parenta222f02c7aa88bfbae10075e6a19ce1fbe672815 (diff)
Revert "hle: service: audio: Use default service thread."
Diffstat (limited to 'src/core/hle/service/audio/audin_u.cpp')
-rw-r--r--src/core/hle/service/audio/audin_u.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audin_u.cpp b/src/core/hle/service/audio/audin_u.cpp
index 26dec7147..053e8f9dd 100644
--- a/src/core/hle/service/audio/audin_u.cpp
+++ b/src/core/hle/service/audio/audin_u.cpp
@@ -203,8 +203,9 @@ private:
};
AudInU::AudInU(Core::System& system_)
- : ServiceFramework{system_, "audin:u"}, service_context{system_, "AudInU"},
- impl{std::make_unique<AudioCore::AudioIn::Manager>(system_)} {
+ : ServiceFramework{system_, "audin:u", ServiceThreadType::CreateNew},
+ service_context{system_, "AudInU"}, impl{std::make_unique<AudioCore::AudioIn::Manager>(
+ system_)} {
// clang-format off
static const FunctionInfo functions[] = {
{0, &AudInU::ListAudioIns, "ListAudioIns"},