comment + cleanup

This commit is contained in:
AJ Kelly
2010-08-11 02:17:29 -05:00
parent cccd8d0a16
commit 50a62f11c4
6 changed files with 9 additions and 9 deletions
+2 -3
View File
@@ -14,14 +14,13 @@ void ActorSound::Load( const RString &sPath )
void ActorSound::Play()
{
// This fix makes possible to stop and pause actorsounds, also because
// sometimes stacking sounds is annoying -DaisuMaster
// This fix makes it possible to stop and pause ActorSounds. (Also,
// sometimes stacking sounds is annoying.) -DaisuMaster
if( m_Sound.IsPlaying() )
{
m_Sound.PlayCopy();
return;
}
m_Sound.StartPlaying();
}