Skip to content

Commit 51aafcc

Browse files
committed
CSettings: addendum to previous commit
1 parent 97d6148 commit 51aafcc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Client/core/CCore.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ CCore::~CCore(void)
184184
// Destroy tray icon
185185
delete m_pTrayIcon;
186186

187-
// This will save GTA volume using the GTA volume level fader value set in settings
188-
// and will not be "attenuated" by the master volume level setting.
187+
// This will set the GTA volume to the GTA volume value in the settings,
188+
// and is not affected by the master volume setting.
189189
m_pLocalGUI->GetMainMenu()->GetSettingsWindow()->ResetGTAVolume();
190190

191191
// Delete the mod manager

Client/core/CSettings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1762,8 +1762,8 @@ bool CSettings::OnVideoDefaultClick(CGUIElement* pElement)
17621762

17631763
void CSettings::ResetGTAVolume()
17641764
{
1765-
// This will save GTA volume using the GTA volume level fader value set in settings
1766-
// and will not be "attenuated" by the master volume level setting.
1765+
// This will set the GTA volume to the GTA volume value in the settings,
1766+
// and is not affected by the master volume setting.
17671767
CGameSettings* gameSettings = CCore::GetSingleton().GetGame()->GetSettings();
17681768
gameSettings->SetRadioVolume(m_fRadioVolume * 64.0f);
17691769
gameSettings->SetSFXVolume(m_fSFXVolume * 64.0f);

0 commit comments

Comments
 (0)