diff options
| author | 2018-08-14 08:03:33 -0400 | |
|---|---|---|
| committer | 2018-08-14 08:03:33 -0400 | |
| commit | d1520410a3cf38a14cd3f3b1dc3fcc5ae38c6b0b (patch) | |
| tree | b7b87483edc5556f3e04965ebc92677db40bfd36 | |
| parent | Merge pull request #1058 from greggameplayer/BC7U_Fix (diff) | |
| parent | audout_u: Correct IAudioOut initializer list order (diff) | |
| download | yuzu-d1520410a3cf38a14cd3f3b1dc3fcc5ae38c6b0b.tar.gz yuzu-d1520410a3cf38a14cd3f3b1dc3fcc5ae38c6b0b.tar.xz yuzu-d1520410a3cf38a14cd3f3b1dc3fcc5ae38c6b0b.zip | |
Merge pull request #1055 from lioncash/init
audout_u: Correct IAudioOut initializer list order
| -rw-r--r-- | src/core/hle/service/audio/audout_u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp index 108a7c6eb..ce709ccf4 100644 --- a/src/core/hle/service/audio/audout_u.cpp +++ b/src/core/hle/service/audio/audout_u.cpp | |||
| @@ -28,7 +28,7 @@ constexpr int DefaultSampleRate{48000}; | |||
| 28 | class IAudioOut final : public ServiceFramework<IAudioOut> { | 28 | class IAudioOut final : public ServiceFramework<IAudioOut> { |
| 29 | public: | 29 | public: |
| 30 | IAudioOut(AudoutParams audio_params, AudioCore::AudioOut& audio_core) | 30 | IAudioOut(AudoutParams audio_params, AudioCore::AudioOut& audio_core) |
| 31 | : ServiceFramework("IAudioOut"), audio_params(audio_params), audio_core(audio_core) { | 31 | : ServiceFramework("IAudioOut"), audio_core(audio_core), audio_params(audio_params) { |
| 32 | 32 | ||
| 33 | static const FunctionInfo functions[] = { | 33 | static const FunctionInfo functions[] = { |
| 34 | {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"}, | 34 | {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"}, |