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
+4 -4
View File
@@ -481,18 +481,18 @@ void MemoryCardManager::CheckStateChanges()
case MemoryCardState_Removed:
if( LastState == MemoryCardState_Ready )
{
m_soundDisconnect.Play( &params );
m_soundDisconnect.Play(true, &params);
MESSAGEMAN->Broadcast( (MessageID)(Message_CardRemovedP1+p) );
}
break;
case MemoryCardState_Ready:
m_soundReady.Play( &params );
m_soundReady.Play(true, &params);
break;
case MemoryCardState_TooLate:
m_soundTooLate.Play( &params );
m_soundTooLate.Play(true, &params);
break;
case MemoryCardState_Error:
m_soundError.Play( &params );
m_soundError.Play(true, &params);
break;
default: break;
}