aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/cycle.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2009-06-06 17:39:42 +0000
committerEugene Sandulenko2009-06-06 17:39:42 +0000
commit194ab100c7c9b729c974e0c90434a2a86c1846ec (patch)
tree1259323102e2a798ef12ded1c8d42df6fa990e9e /engines/agi/cycle.cpp
parent93d62da652d8bf514047b79aedb5412a7380397b (diff)
downloadscummvm-rg350-194ab100c7c9b729c974e0c90434a2a86c1846ec.tar.gz
scummvm-rg350-194ab100c7c9b729c974e0c90434a2a86c1846ec.tar.bz2
scummvm-rg350-194ab100c7c9b729c974e0c90434a2a86c1846ec.zip
Fix bug #2434187: "SQ2: message not displayed, or vanishes too quickly"
svn-id: r41240
Diffstat (limited to 'engines/agi/cycle.cpp')
-rw-r--r--engines/agi/cycle.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/agi/cycle.cpp b/engines/agi/cycle.cpp
index 2a4b9fa0c3..09df39248f 100644
--- a/engines/agi/cycle.cpp
+++ b/engines/agi/cycle.cpp
@@ -40,6 +40,12 @@ void AgiEngine::newRoom(int n) {
VtEntry *v;
int i;
+ // Simulate slowww computer.
+ // Many effects rely on it.
+ _gfx->setCursor(_renderMode == Common::kRenderAmiga, true);
+ pause(2000);
+ _gfx->setCursor(_renderMode == Common::kRenderAmiga);
+
debugC(4, kDebugLevelMain, "*** room %d ***", n);
_sound->stopSound();