From a5d762c029b904258cc1346fea54fb255585470f Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 6 Jun 2009 17:41:29 +0000 Subject: Fix bug #1745954: "GR: Intro "jumpy" in parts (Amiga version)" svn-id: r41244 --- engines/agi/op_cmd.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'engines/agi/op_cmd.cpp') diff --git a/engines/agi/op_cmd.cpp b/engines/agi/op_cmd.cpp index a0824c850d..5d08313b52 100644 --- a/engines/agi/op_cmd.cpp +++ b/engines/agi/op_cmd.cpp @@ -626,6 +626,9 @@ cmd(set_simple) { cmd_close_window(NULL); g_picture->showPic(); game.pictureShown = 1; + + // Simulate slowww computer. Many effects rely on this + g_agi->pause(kPausePicture); } } @@ -760,6 +763,9 @@ cmd(draw_pic) { // Fixes bug #1658514: AGI: SQ1 (2.2 DOS ENG) bizzare exploding roger if (g_agi->getGameID() == GID_SQ1 && _v[p0] == 20) g_agi->setflag(103, false); + + // Simulate slowww computer. Many effects rely on this + g_agi->pause(kPausePicture); } cmd(show_pic) { @@ -792,6 +798,9 @@ cmd(overlay_pic) { g_sprites->blitBoth(); game.pictureShown = 0; g_sprites->commitBoth(); + + // Simulate slowww computer. Many effects rely on this + g_agi->pause(kPausePicture); } cmd(show_pri_screen) { -- cgit v1.2.3