rename back -> cancel because "back" conflicts with "background"

This commit is contained in:
Chris Danford
2005-03-20 06:14:41 +00:00
parent 1ab61d7dde
commit 48e6cb1a69
27 changed files with 55 additions and 56 deletions
+3 -3
View File
@@ -92,7 +92,7 @@ void ScreenManager::ThemeChanged()
m_soundCoin.Load( THEME->GetPathS("Common","coin") );
m_soundInvalid.Load( THEME->GetPathS("Common","invalid") );
m_soundScreenshot.Load( THEME->GetPathS("Common","screenshot") );
m_soundBack.Load( THEME->GetPathS("Common","back") );
m_soundCancel.Load( THEME->GetPathS("Common","cancel") );
// reload overlay screens
for( unsigned i=0; i<m_OverlayScreens.size(); i++ )
@@ -629,11 +629,11 @@ void ScreenManager::PlayScreenshotSound()
m_soundScreenshot.Play( &p );
}
void ScreenManager::PlayBackSound()
void ScreenManager::PlayCancelSound()
{
RageSoundParams p;
p.m_Volume = PREFSMAN->m_fSoundVolume;
m_soundBack.Play( &p );
m_soundCancel.Play( &p );
}
void ScreenManager::PlaySharedBackgroundOffCommand()