diff options
| author | 2024-02-16 13:11:36 -0500 | |
|---|---|---|
| committer | 2024-02-16 13:11:36 -0500 | |
| commit | c7588c042ba14bce871d12f5cf4dbf64bb5b3fe9 (patch) | |
| tree | 59e23eb8b42ec44318ca00f8972a33fe7181984c /src/core/hle/service/audio | |
| parent | Merge pull request #13011 from liamwhite/vi-ipc (diff) | |
| parent | service: set: Migrate ISystemSettingsServer to new IPC (diff) | |
| download | yuzu-c7588c042ba14bce871d12f5cf4dbf64bb5b3fe9.tar.gz yuzu-c7588c042ba14bce871d12f5cf4dbf64bb5b3fe9.tar.xz yuzu-c7588c042ba14bce871d12f5cf4dbf64bb5b3fe9.zip | |
Merge pull request #13016 from german77/set-interface2
service: set: Migrate ISystemSettingsServer to new IPC
Diffstat (limited to 'src/core/hle/service/audio')
| -rw-r--r-- | src/core/hle/service/audio/audctl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audctl.cpp b/src/core/hle/service/audio/audctl.cpp index 3101cf447..cf4bb4034 100644 --- a/src/core/hle/service/audio/audctl.cpp +++ b/src/core/hle/service/audio/audctl.cpp | |||
| @@ -106,7 +106,7 @@ void AudCtl::GetAudioOutputMode(HLERequestContext& ctx) { | |||
| 106 | const auto target{rp.PopEnum<Set::AudioOutputModeTarget>()}; | 106 | const auto target{rp.PopEnum<Set::AudioOutputModeTarget>()}; |
| 107 | 107 | ||
| 108 | Set::AudioOutputMode output_mode{}; | 108 | Set::AudioOutputMode output_mode{}; |
| 109 | const auto result = m_set_sys->GetAudioOutputMode(output_mode, target); | 109 | const auto result = m_set_sys->GetAudioOutputMode(&output_mode, target); |
| 110 | 110 | ||
| 111 | LOG_INFO(Service_SET, "called, target={}, output_mode={}", target, output_mode); | 111 | LOG_INFO(Service_SET, "called, target={}, output_mode={}", target, output_mode); |
| 112 | 112 | ||
| @@ -188,7 +188,7 @@ void AudCtl::SetSpeakerAutoMuteEnabled(HLERequestContext& ctx) { | |||
| 188 | 188 | ||
| 189 | void AudCtl::IsSpeakerAutoMuteEnabled(HLERequestContext& ctx) { | 189 | void AudCtl::IsSpeakerAutoMuteEnabled(HLERequestContext& ctx) { |
| 190 | bool is_speaker_auto_mute_enabled{}; | 190 | bool is_speaker_auto_mute_enabled{}; |
| 191 | const auto result = m_set_sys->GetSpeakerAutoMuteFlag(is_speaker_auto_mute_enabled); | 191 | const auto result = m_set_sys->GetSpeakerAutoMuteFlag(&is_speaker_auto_mute_enabled); |
| 192 | 192 | ||
| 193 | LOG_WARNING(Audio, "(STUBBED) called, is_speaker_auto_mute_enabled={}", | 193 | LOG_WARNING(Audio, "(STUBBED) called, is_speaker_auto_mute_enabled={}", |
| 194 | is_speaker_auto_mute_enabled); | 194 | is_speaker_auto_mute_enabled); |