diff options
author | Travis Howell | 2004-08-08 11:43:54 +0000 |
---|---|---|
committer | Travis Howell | 2004-08-08 11:43:54 +0000 |
commit | 90b209449c6fcfde262c6d891504d1d5b2ac849e (patch) | |
tree | b6eb089ecfdccee53b66017a5431aa67dc3bbf21 | |
parent | 3d4054c793043b71c2647c0f02fbc7a118662bee (diff) | |
download | scummvm-rg350-90b209449c6fcfde262c6d891504d1d5b2ac849e.tar.gz scummvm-rg350-90b209449c6fcfde262c6d891504d1d5b2ac849e.tar.bz2 scummvm-rg350-90b209449c6fcfde262c6d891504d1d5b2ac849e.zip |
Update comment
svn-id: r14513
-rw-r--r-- | scumm/script_v6.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 44e461fe6c..99ae54451a 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -816,9 +816,10 @@ void ScummEngine_v6::o6_startScript() { script = pop(); flags = pop(); - // HACK bug #556558: At Dino Bungee National Memorial, the buttons for the Wally - // and Rex dinosaurs will always restart their speech, instead of stopping and - // starting their speech. This was a script bug in the original game. + // WORKAROUND bug #556558: At Dino Bungee National Memorial, the buttons for + // the Wally and Rex dinosaurs will always restart their speech, instead of + // stopping and starting their speech. This was a script bug in the original + // game. if (_gameId == GID_SAMNMAX && _roomResource == 59 && vm.slot[_currentScript].number == 201 && script == 48) { o6_breakHere(); |