diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/kgraphics.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp index efa34b5f1f..08e3115e48 100644 --- a/engines/sci/engine/kgraphics.cpp +++ b/engines/sci/engine/kgraphics.cpp @@ -671,8 +671,11 @@ reg_t kPaletteAnimate(EngineState *s, int argc, reg_t *argv) { // palette animation effect slower and visible, and not have the logo screen // get skipped because the scripts don't wait between animation steps. Fixes // bug #3537232. - // This problem also happens in the time pod (room#531) - // This problem also happens in the ending cutscene time rip (room#21) + // The original workaround was for the intro SQ4 logo (room#1). + // This problem also happens in the time pod (room#531). + // This problem also happens in the ending cutscene time rip (room#21). + // This workaround affects astro chicken's (room#290) and is also called once + // right after a gameover (room#376) if (g_sci->getGameId() == GID_SQ4 && !g_sci->isCD()) g_sci->sleep(10); |