aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/audio/audren_u.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-30 21:14:36 -0700
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-04-02 01:24:30 -0400
commit11120b5b1e41e62ef02e5048d4d3b3d0e2f7e746 (patch)
treeee0c3c823dac4087f311e4a6bcd02f49f33719cc /src/core/hle/service/audio/audren_u.cpp
parentbf1750664c6aeb991240cdd51c299fa0ab329f8f (diff)
hle: service: audio: Create a service thread where appropriate.
Diffstat (limited to 'src/core/hle/service/audio/audren_u.cpp')
-rw-r--r--src/core/hle/service/audio/audren_u.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp
index f45e5cecc..d4ffeb21d 100644
--- a/src/core/hle/service/audio/audren_u.cpp
+++ b/src/core/hle/service/audio/audren_u.cpp
@@ -24,7 +24,8 @@ public:
explicit IAudioRenderer(Core::System& system_,
const AudioCommon::AudioRendererParameter& audren_params,
const std::size_t instance_number)
- : ServiceFramework{system_, "IAudioRenderer"}, service_context{system_, "IAudioRenderer"} {
+ : ServiceFramework{system_, "IAudioRenderer", ServiceThreadType::CreateNew},
+ service_context{system_, "IAudioRenderer"} {
// clang-format off
static const FunctionInfo functions[] = {
{0, &IAudioRenderer::GetSampleRate, "GetSampleRate"},