diff options
author | Travis Howell | 2004-07-12 06:22:40 +0000 |
---|---|---|
committer | Travis Howell | 2004-07-12 06:22:40 +0000 |
commit | b42e853ddd27631665a652def14fd35b898d694a (patch) | |
tree | 0436f53f712eee0d6353c6b66e176218d287f0ce | |
parent | 032405d6f7ef0cd5b546e26d0bfe64bcb4863534 (diff) | |
download | scummvm-rg350-b42e853ddd27631665a652def14fd35b898d694a.tar.gz scummvm-rg350-b42e853ddd27631665a652def14fd35b898d694a.tar.bz2 scummvm-rg350-b42e853ddd27631665a652def14fd35b898d694a.zip |
Fix puttdemo (dos) regression.
svn-id: r14192
-rw-r--r-- | scumm/script_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 02613b8e47..ecf5018763 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1027,7 +1027,7 @@ void ScummEngine_v6::o6_startSound() { if (_features & GF_DIGI_IMUSE) _imuseDigital->startSfx(pop(), 64); else { - if (_features & GF_HUMONGOUS) { + if (_gameId == GID_HEGAME) { // Seems to range between 952 - 9000 // In Fatty Bear's Birthday Surprise the piano uses offsets 1 - 23 to // indicate which note to play, but only when using the standard piano |