Browse Source
Merge pull request #1055 from lioncash/init
audout_u: Correct IAudioOut initializer list order
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/service/audio/audout_u.cpp
|
|
|
@ -28,7 +28,7 @@ constexpr int DefaultSampleRate{48000}; |
|
|
|
class IAudioOut final : public ServiceFramework<IAudioOut> { |
|
|
|
public: |
|
|
|
IAudioOut(AudoutParams audio_params, AudioCore::AudioOut& audio_core) |
|
|
|
: ServiceFramework("IAudioOut"), audio_params(audio_params), audio_core(audio_core) { |
|
|
|
: ServiceFramework("IAudioOut"), audio_core(audio_core), audio_params(audio_params) { |
|
|
|
|
|
|
|
static const FunctionInfo functions[] = { |
|
|
|
{0, &IAudioOut::GetAudioOutState, "GetAudioOutState"}, |
|
|
|
|