summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-02 05:56:17 +0100
committerLioncash <mathew1800@gmail.com>2018-12-02 05:56:20 +0100
commit57ac068a232ef2d327be5d9445d56cce7e720de5 (patch)
treec8c366321e60fd2c7df500b2a5542d7475ea88f0 /src/core/hle
parentFix debug build (diff)
downloadyuzu-57ac068a232ef2d327be5d9445d56cce7e720de5.tar
yuzu-57ac068a232ef2d327be5d9445d56cce7e720de5.tar.gz
yuzu-57ac068a232ef2d327be5d9445d56cce7e720de5.tar.bz2
yuzu-57ac068a232ef2d327be5d9445d56cce7e720de5.tar.lz
yuzu-57ac068a232ef2d327be5d9445d56cce7e720de5.tar.xz
yuzu-57ac068a232ef2d327be5d9445d56cce7e720de5.tar.zst
yuzu-57ac068a232ef2d327be5d9445d56cce7e720de5.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/audio/audout_u.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp
index 2ee9bc273..d0dd1ef10 100644
--- a/src/core/hle/service/audio/audout_u.cpp
+++ b/src/core/hle/service/audio/audout_u.cpp
@@ -46,8 +46,8 @@ class IAudioOut final : public ServiceFramework<IAudioOut> {
public:
IAudioOut(AudoutParams audio_params, AudioCore::AudioOut& audio_core, std::string&& device_name,
std::string&& unique_name)
- : ServiceFramework("IAudioOut"), audio_core(audio_core), audio_params(audio_params),
- device_name(std::move(device_name)) {
+ : ServiceFramework("IAudioOut"), audio_core(audio_core),
+ device_name(std::move(device_name)), audio_params(audio_params) {
static const FunctionInfo functions[] = {
{0, &IAudioOut::GetAudioOutState, "GetAudioOutState"},