diff options
| -rw-r--r-- | engines/fullpipe/sound.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/sound.cpp b/engines/fullpipe/sound.cpp index 57d0ac5884..c9af9e85ae 100644 --- a/engines/fullpipe/sound.cpp +++ b/engines/fullpipe/sound.cpp @@ -521,7 +521,7 @@ void FullpipeEngine::stopAllSoundInstances(int id) {  void FullpipeEngine::updateSoundVolume() {  	for (int i = 0; i < _currSoundListCount; i++) -		for (int j = 0; i < _currSoundList1[i]->getCount(); j++) { +		for (int j = 0; j < _currSoundList1[i]->getCount(); j++) {  			_currSoundList1[i]->getSoundByIndex(j)->setPanAndVolume(_sfxVolume, 0);  		}  }  | 
