diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-12-04 15:31:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-04 15:31:40 -0500 |
| commit | 3b9db856468d1e125e4faf6c22f7c03845bf2046 (patch) | |
| tree | d2173eef7ef85bbb39cf8f4d79bf9c4889421263 /src/core/hle/service/audio/audin_u.cpp | |
| parent | 522e7c5663bcb61a760c412d655295de11c38077 (diff) | |
| parent | 0d6a8824d04d08005ff45523b4c3008dd495d36d (diff) | |
Merge pull request #9232 from bunnei/audio-default-thread
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, 2 insertions, 3 deletions
diff --git a/src/core/hle/service/audio/audin_u.cpp b/src/core/hle/service/audio/audin_u.cpp index 053e8f9dd..26dec7147 100644 --- a/src/core/hle/service/audio/audin_u.cpp +++ b/src/core/hle/service/audio/audin_u.cpp @@ -203,9 +203,8 @@ private: }; AudInU::AudInU(Core::System& system_) - : ServiceFramework{system_, "audin:u", ServiceThreadType::CreateNew}, - service_context{system_, "AudInU"}, impl{std::make_unique<AudioCore::AudioIn::Manager>( - system_)} { + : ServiceFramework{system_, "audin:u"}, service_context{system_, "AudInU"}, + impl{std::make_unique<AudioCore::AudioIn::Manager>(system_)} { // clang-format off static const FunctionInfo functions[] = { {0, &AudInU::ListAudioIns, "ListAudioIns"}, |
