JANITORIAL: Whitespace fixes

This commit is contained in:
Eugene Sandulenko 2021-03-17 23:29:15 +01:00
parent 9c68ab2f43
commit c2d4a39c98

View File

@ -571,7 +571,7 @@ bool SoundManager::startFootsteps(int footstepsID) {
// Load the footsteps sample data and modify the internal flags
_soundData[kFootstepsIndex]->load(_vm->getFilePath(IDS_FOOTSTEPS_FILENAME_BASE + footstepsID));
_soundData[kFootstepsIndex]->_loop = true;
_soundData[kFootstepsIndex]->_loop = true;
}
// Play the footsteps
@ -648,8 +648,8 @@ void SoundManager::timerCallback() {
// Update the start time, step counter, and remaining time
_soundData[i]->_timedEffectRemaining -= (_soundData[i]->_timedEffectRemaining / _soundData[i]->_timedEffectSteps);
_soundData[i]->_timedEffectStart = g_system->getMillis();
_soundData[i]->_timedEffectSteps--;
_soundData[i]->_timedEffectStart = g_system->getMillis();
_soundData[i]->_timedEffectSteps--;
// If the effect has finished, then remove the transition type
if (_soundData[i]->_timedEffectSteps == 0) {