aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2007-06-26 08:01:32 +0000
committerMax Horn2007-06-26 08:01:32 +0000
commitc967312d747aa299b2e92ff38d96499cf8666c94 (patch)
treead6cfdf69ec7c8375f23eab518709e9ffc5e813a
parent2e3ce7dc8eec143f1e94afbb122923e394f09f3b (diff)
downloadscummvm-rg350-c967312d747aa299b2e92ff38d96499cf8666c94.tar.gz
scummvm-rg350-c967312d747aa299b2e92ff38d96499cf8666c94.tar.bz2
scummvm-rg350-c967312d747aa299b2e92ff38d96499cf8666c94.zip
Explicitly mention the bug we work around (makes it a lot easier to deal with the workaround code in the future if necessary)
svn-id: r27725
-rw-r--r--engines/gob/inter_v1.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp
index 4738669974..a3277047e7 100644
--- a/engines/gob/inter_v1.cpp
+++ b/engines/gob/inter_v1.cpp
@@ -1647,8 +1647,9 @@ bool Inter_v1::o1_keyFunc(OpFuncParams &params) {
lastCalled = now;
_noBusyWait = false;
- // WORKAROUND: Ween busy-waits in the intro for a counter to become 5000.
- // We deliberately slow down busy-waiting, so we shorten the counting, too.
+ // WORKAROUND for bug #1726130: Ween busy-waits in the intro for a counter
+ // to become 5000. We deliberately slow down busy-waiting, so we shorten
+ // the counting, too.
if (((_vm->_global->_inter_execPtr - _vm->_game->_totFileData) == 729) &&
(VAR(59) < 4000) && !scumm_stricmp(_vm->_game->_curTotFile, "intro5.tot"))
WRITE_VAR(59, 4000);