Skip to content

Commit 8a769c2

Browse files
committed
addendum to 487086e, specific order matters here
1 parent 487086e commit 8a769c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Client/core/CSettings.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1376,11 +1376,12 @@ void CSettings::UpdateAudioTab()
13761376

13771377
CGameSettings* gameSettings = CCore::GetSingleton().GetGame()->GetSettings();
13781378

1379-
m_pAudioMasterVolume->SetScrollPosition(fMasterVolume);
13801379
m_pAudioRadioVolume->SetScrollPosition(m_fRadioVolume);
13811380
m_pAudioSFXVolume->SetScrollPosition(m_fSFXVolume);
13821381
m_pAudioMTAVolume->SetScrollPosition(fMTAVolume);
13831382
m_pAudioVoiceVolume->SetScrollPosition(fVoiceVolume);
1383+
// Lastly, set our master volume scroll position
1384+
m_pAudioMasterVolume->SetScrollPosition(fMasterVolume);
13841385

13851386
m_pCheckBoxAudioEqualizer->SetSelected(gameSettings->IsRadioEqualizerEnabled());
13861387
m_pCheckBoxAudioAutotune->SetSelected(gameSettings->IsRadioAutotuneEnabled());

0 commit comments

Comments
 (0)