Browse Source
Merge pull request #1839 from lioncash/init
service/audio/audout_u: Amend constructor initialization 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
2 additions and
2 deletions
-
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"}, |
|
|
|
|