Code style: remove unnecessary indentation

This commit is contained in:
Robert Müller 2022-06-26 21:37:06 +02:00
parent 939c51bae1
commit 3db3f0af9c

View file

@ -966,10 +966,8 @@ void CSound::StopVoice(CVoiceHandle Voice)
if(m_aVoices[VoiceID].m_Age != Voice.Age()) if(m_aVoices[VoiceID].m_Age != Voice.Age())
return; return;
{
m_aVoices[VoiceID].m_pSample = 0; m_aVoices[VoiceID].m_pSample = 0;
m_aVoices[VoiceID].m_Age++; m_aVoices[VoiceID].m_Age++;
}
} }
bool CSound::IsPlaying(int SampleID) bool CSound::IsPlaying(int SampleID)