Added debug key for toggling action sounds off. Touches every place that RageSound::Play is called, hope I didn't miss one.

This commit is contained in:
Kyzentun
2015-02-28 06:25:02 -07:00
parent d35933f1e5
commit b293a8c073
38 changed files with 165 additions and 131 deletions
+2 -2
View File
@@ -137,7 +137,7 @@ void ScreenSetTime::ChangeValue( int iDirection )
m_TimeOffset = iAdjusted - iNow;
m_soundChangeValue.Play();
m_soundChangeValue.Play(true);
}
void ScreenSetTime::ChangeSelection( int iDirection )
@@ -156,7 +156,7 @@ void ScreenSetTime::ChangeSelection( int iDirection )
RageColor(1,1,1,1) );
if( iDirection != 0 )
m_soundChangeSelection.Play();
m_soundChangeSelection.Play(true);
}
bool ScreenSetTime::MenuUp( const InputEventPlus &input )