aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2006-01-21 03:45:53 +0000
committerTravis Howell2006-01-21 03:45:53 +0000
commit9660020ccba75a7229a89847045f6a1c9d1695b3 (patch)
tree75bc6118ff6d0099c071b8a1250c5974c6f78165 /scumm
parenta0ef746de03ecc475de79ac28fb9e889680c1f53 (diff)
downloadscummvm-rg350-9660020ccba75a7229a89847045f6a1c9d1695b3.tar.gz
scummvm-rg350-9660020ccba75a7229a89847045f6a1c9d1695b3.tar.bz2
scummvm-rg350-9660020ccba75a7229a89847045f6a1c9d1695b3.zip
Typo
svn-id: r20109
Diffstat (limited to 'scumm')
-rw-r--r--scumm/sound_he.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound_he.cpp b/scumm/sound_he.cpp
index 7904a0436d..6defced989 100644
--- a/scumm/sound_he.cpp
+++ b/scumm/sound_he.cpp
@@ -53,7 +53,7 @@ int Sound::findFreeSoundChannel() {
}
if (min < 8) {
- for (chan = min; min < ARRAYSIZE(_heChannel); chan++) {
+ for (chan = min; chan < ARRAYSIZE(_heChannel); chan++) {
if (_vm->_mixer->isSoundHandleActive(_heSoundChannels[chan]) == 0)
return chan;
}