diff options
author | Matthew Hoops | 2013-05-04 23:48:00 -0400 |
---|---|---|
committer | Matthew Hoops | 2013-05-04 23:48:00 -0400 |
commit | fa0b38153d0391dbe9acb5ca05538ec7661fae79 (patch) | |
tree | e0c71f8e82c0ef4f403834e25699c149904286fb /engines/pegasus | |
parent | 007e16dfd190f2950da38f997b247c980828e11b (diff) | |
download | scummvm-rg350-fa0b38153d0391dbe9acb5ca05538ec7661fae79.tar.gz scummvm-rg350-fa0b38153d0391dbe9acb5ca05538ec7661fae79.tar.bz2 scummvm-rg350-fa0b38153d0391dbe9acb5ca05538ec7661fae79.zip |
PEGASUS: Fix two missing frames in the globe game
Diffstat (limited to 'engines/pegasus')
-rw-r--r-- | engines/pegasus/neighborhood/norad/delta/globegame.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/pegasus/neighborhood/norad/delta/globegame.cpp b/engines/pegasus/neighborhood/norad/delta/globegame.cpp index 06e40c2b3a..35ec9b813d 100644 --- a/engines/pegasus/neighborhood/norad/delta/globegame.cpp +++ b/engines/pegasus/neighborhood/norad/delta/globegame.cpp @@ -621,6 +621,7 @@ void GlobeGame::receiveNotification(Notification *notification, const Notificati _monitorMovie.stop(); _monitorMovie.setSegment(0, _monitorMovie.getDuration()); _monitorMovie.setTime(kSplash2End * scale - 1); + _monitorMovie.redrawMovieWorld(); _monitorMovie.setFlags(0); _owner->requestDelay(1, 2, kFilterNoInput, 0); @@ -643,6 +644,7 @@ void GlobeGame::receiveNotification(Notification *notification, const Notificati _monitorMovie.stop(); _monitorMovie.setSegment(0, _monitorMovie.getDuration()); _monitorMovie.setTime(kNewLaunchSiloTime * scale); + _monitorMovie.redrawMovieWorld(); _owner->requestSpotSound(kNewLaunchSiloIn, kNewLaunchSiloOut, kFilterNoInput, kSpotSoundCompletedFlag); _gameState = kPlayingNewSilo1; |