aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-09-05 03:46:00 +0000
committerTravis Howell2004-09-05 03:46:00 +0000
commit8db0a7bb7955280e73e199511ed4bc0e0c848079 (patch)
tree4d66a668b3d46dbff6198830fc1a9eb1e00078b2 /scumm
parent2894f13d2b315004b94bdd88b1a7a5591fdfc5ac (diff)
downloadscummvm-rg350-8db0a7bb7955280e73e199511ed4bc0e0c848079.tar.gz
scummvm-rg350-8db0a7bb7955280e73e199511ed4bc0e0c848079.tar.bz2
scummvm-rg350-8db0a7bb7955280e73e199511ed4bc0e0c848079.zip
Caused music regression.
svn-id: r14901
Diffstat (limited to 'scumm')
-rw-r--r--scumm/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 76139b2eaa..f339aaf879 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -163,7 +163,7 @@ void Sound::playSound(int soundID, int offset) {
bool music = false;
if (_vm->_heversion >= 70 && soundID > _vm->_numSounds) {
- debug(0, "playSound #%d", soundID);
+ debug(1, "playSound #%d", soundID);
int music_offs, tunes, total_size;
uint skip = 0;
@@ -197,7 +197,7 @@ void Sound::playSound(int soundID, int offset) {
if (soundID >= 8000)
skip = (soundID - 8000) * 25;
else
- skip = (soundID - 4001) * 25;
+ skip = (soundID - 4000) * 25;
}
}