summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audin_u.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-12-04 21:31:40 +0100
committerGitHub <noreply@github.com>2022-12-04 21:31:40 +0100
commit3b9db856468d1e125e4faf6c22f7c03845bf2046 (patch)
treed2173eef7ef85bbb39cf8f4d79bf9c4889421263 /src/core/hle/service/audio/audin_u.cpp
parentMerge pull request #9273 from ameerj/per-game-profile (diff)
parenthle: service: audio: Use default service thread. (diff)
downloadyuzu-3b9db856468d1e125e4faf6c22f7c03845bf2046.tar
yuzu-3b9db856468d1e125e4faf6c22f7c03845bf2046.tar.gz
yuzu-3b9db856468d1e125e4faf6c22f7c03845bf2046.tar.bz2
yuzu-3b9db856468d1e125e4faf6c22f7c03845bf2046.tar.lz
yuzu-3b9db856468d1e125e4faf6c22f7c03845bf2046.tar.xz
yuzu-3b9db856468d1e125e4faf6c22f7c03845bf2046.tar.zst
yuzu-3b9db856468d1e125e4faf6c22f7c03845bf2046.zip
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, 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"},