diff options
author | Travis Howell | 2009-10-16 02:02:09 +0000 |
---|---|---|
committer | Travis Howell | 2009-10-16 02:02:09 +0000 |
commit | 01057a75f4b48bfc789a2d53a4afdeaaad6d3d93 (patch) | |
tree | 18507a8079e15eb134dda51b33173190741d197c /engines | |
parent | b2bf21f0da168d1a88f3b52b03825699074dc91c (diff) | |
download | scummvm-rg350-01057a75f4b48bfc789a2d53a4afdeaaad6d3d93.tar.gz scummvm-rg350-01057a75f4b48bfc789a2d53a4afdeaaad6d3d93.tar.bz2 scummvm-rg350-01057a75f4b48bfc789a2d53a4afdeaaad6d3d93.zip |
Fix bug #2879796 - Reversed Ventriloquists.
svn-id: r45143
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/sound.cpp b/engines/scumm/sound.cpp index 82ed2a62e6..99cbbc9a7d 100644 --- a/engines/scumm/sound.cpp +++ b/engines/scumm/sound.cpp @@ -113,7 +113,7 @@ void Sound::addSoundToQueue2(int sound, int heOffset, int heChannel, int heFlags void Sound::processSound() { if (_vm->_game.version >= 7) { processSfxQueues(); - } else if (_vm->_game.heversion >= 60) { + } else if (_vm->_game.heversion >= 80) { processSoundQueues(); } else { processSfxQueues(); |