aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/room.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lure/room.cpp')
-rw-r--r--engines/lure/room.cpp22
1 files changed, 13 insertions, 9 deletions
diff --git a/engines/lure/room.cpp b/engines/lure/room.cpp
index 5d04fea36b..450e2ea3aa 100644
--- a/engines/lure/room.cpp
+++ b/engines/lure/room.cpp
@@ -583,15 +583,19 @@ void Room::setRoomNumber(uint16 newRoomNumber, bool showOverlay) {
loadRoomHotspots();
- if ((_roomData->exitTime != 0xffff) && (_roomData->exitTime != 0)) {
- // If time has passed, animation ticks needed before room is displayed
- int numSeconds = (g_system->getMillis() - _roomData->exitTime) / 1000;
- if (numSeconds > 300) numSeconds = 300;
-
- game.preloadFlag() = true;
- while (numSeconds-- > 0)
- game.tick();
- game.preloadFlag() = false;
+ if (leaveFlag) {
+ // A previous room has been left - check if there are any seconds worth
+ // of animations that need to be done in 'fast forward'
+ if ((_roomData->exitTime != 0xffff) && (_roomData->exitTime != 0)) {
+ // If time has passed, animation ticks needed before room is displayed
+ int numSeconds = (g_system->getMillis() - _roomData->exitTime) / 1000;
+ if (numSeconds > 300) numSeconds = 300;
+
+ game.preloadFlag() = true;
+ while (numSeconds-- > 0)
+ game.tick();
+ game.preloadFlag() = false;
+ }
}
game.tick();