aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruruk2014-02-22 15:35:24 +0100
committeruruk2014-02-22 15:35:43 +0100
commit59f440c36a75dad95e1fa12f6ff26a329cdd94b0 (patch)
tree4b7c130937bd6e2a7ef89482306ec950380df1aa
parent7c69516c404b649136a59b9301e3740134536a23 (diff)
downloadscummvm-rg350-59f440c36a75dad95e1fa12f6ff26a329cdd94b0.tar.gz
scummvm-rg350-59f440c36a75dad95e1fa12f6ff26a329cdd94b0.tar.bz2
scummvm-rg350-59f440c36a75dad95e1fa12f6ff26a329cdd94b0.zip
AVALANCHE: Repair ShootEmUp::updateTime().
-rw-r--r--engines/avalanche/shootemup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/shootemup.cpp b/engines/avalanche/shootemup.cpp
index 1b48aa9433..676154d52f 100644
--- a/engines/avalanche/shootemup.cpp
+++ b/engines/avalanche/shootemup.cpp
@@ -574,9 +574,9 @@ void ShootEmUp::updateTime() {
if (_time <= kFlashTime) {
int timeMode = 0;
if ((_time % 2) == 1)
- timeMode = 20; // Normal 'Time:'
+ timeMode = 19; // Normal 'Time:'
else
- timeMode = 86; // Flash 'Time:'
+ timeMode = 85; // Flash 'Time:'
_vm->_graphics->seuDrawPicture(110, 0, timeMode);
}