aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v6he.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-02-09 14:11:44 +0000
committerTravis Howell2004-02-09 14:11:44 +0000
commite98d5983da0ef68c53366a9433dfdb181933bf79 (patch)
treeb2268a78cc6582f5e2b052c84cdf7836afbb9c80 /scumm/script_v6he.cpp
parent404db07a3f6d4641aa13ec4d569de32c78960df4 (diff)
downloadscummvm-rg350-e98d5983da0ef68c53366a9433dfdb181933bf79.tar.gz
scummvm-rg350-e98d5983da0ef68c53366a9433dfdb181933bf79.tar.bz2
scummvm-rg350-e98d5983da0ef68c53366a9433dfdb181933bf79.zip
Add comment
svn-id: r12794
Diffstat (limited to 'scumm/script_v6he.cpp')
-rw-r--r--scumm/script_v6he.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp
index 674fe4ec69..3cbabe6fe3 100644
--- a/scumm/script_v6he.cpp
+++ b/scumm/script_v6he.cpp
@@ -399,8 +399,9 @@ void ScummEngine_v6he::o6_setState() {
}
void ScummEngine_v6he::o6_startSound() {
+ // Seems to range between 952 - 9000
if (_gameId != GID_PUTTDEMO)
- pop(); // offset which seems to always be zero
+ debug(2, "o6_startSound: unknown value %d", pop());
_sound->addSoundToQueue(pop());
}