diff options
-rw-r--r-- | engines/gob/inter_v1.cpp | 5 |
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 ¶ms) { 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); |