diff options
| author | bunnei <bunneidev@gmail.com> | 2022-12-14 14:57:33 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-14 14:57:33 -0800 |
| commit | beba9c9b61318164557df3933bf3f5eb660b5eec (patch) | |
| tree | 0e07c1af31737e2fddc50d032522cfc4b95a1c29 /src/core/hle/service/audio/audin_u.cpp | |
| parent | a222f02c7aa88bfbae10075e6a19ce1fbe672815 (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.cpp | 5 |
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"}, |
