From b07a833b639fa90c1306bcf1674f3f244ceba043 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 14 May 2014 11:33:19 +0200 Subject: FULLPIPE: Fix mistypo in FullpipeEngine::stopAllSounds() which lead to crash --- engines/fullpipe/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/fullpipe/sound.cpp b/engines/fullpipe/sound.cpp index 3578e2a1df..ced5c75850 100644 --- a/engines/fullpipe/sound.cpp +++ b/engines/fullpipe/sound.cpp @@ -301,7 +301,7 @@ void FullpipeEngine::stopAllSounds() { // _mixer->stopAll(); 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)->stop(); } } -- cgit v1.2.3