diff options
| author | 2018-12-03 17:03:00 -0500 | |
|---|---|---|
| committer | 2018-12-03 17:03:00 -0500 | |
| commit | 118f4023824cd53512a9c7eb65f9f21bbcfcdc67 (patch) | |
| tree | 2cac429647994dca38b3895dea208757db3021d5 | |
| parent | Merge pull request #1841 from ogniK5377/npad-mode-fix (diff) | |
| parent | service/audio/audout_u: Amend constructor initialization list order (diff) | |
| download | yuzu-118f4023824cd53512a9c7eb65f9f21bbcfcdc67.tar.gz yuzu-118f4023824cd53512a9c7eb65f9f21bbcfcdc67.tar.xz yuzu-118f4023824cd53512a9c7eb65f9f21bbcfcdc67.zip | |
Merge pull request #1839 from lioncash/init
service/audio/audout_u: Amend constructor initialization list order
| -rw-r--r-- | src/core/hle/service/audio/audout_u.cpp | 4 |
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> { | |||
| 46 | public: | 46 | public: |
| 47 | IAudioOut(AudoutParams audio_params, AudioCore::AudioOut& audio_core, std::string&& device_name, | 47 | IAudioOut(AudoutParams audio_params, AudioCore::AudioOut& audio_core, std::string&& device_name, |
| 48 | std::string&& unique_name) | 48 | std::string&& unique_name) |
| 49 | : ServiceFramework("IAudioOut"), audio_core(audio_core), audio_params(audio_params), | 49 | : ServiceFramework("IAudioOut"), audio_core(audio_core), |
| 50 | device_name(std::move(device_name)) { | 50 | device_name(std::move(device_name)), audio_params(audio_params) { |
| 51 | 51 | ||
| 52 | static const FunctionInfo functions[] = { | 52 | static const FunctionInfo functions[] = { |
| 53 | {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"}, | 53 | {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"}, |