diff options
author | uruk | 2014-02-22 15:35:24 +0100 |
---|---|---|
committer | uruk | 2014-02-22 15:35:43 +0100 |
commit | 59f440c36a75dad95e1fa12f6ff26a329cdd94b0 (patch) | |
tree | 4b7c130937bd6e2a7ef89482306ec950380df1aa /engines | |
parent | 7c69516c404b649136a59b9301e3740134536a23 (diff) | |
download | scummvm-rg350-59f440c36a75dad95e1fa12f6ff26a329cdd94b0.tar.gz scummvm-rg350-59f440c36a75dad95e1fa12f6ff26a329cdd94b0.tar.bz2 scummvm-rg350-59f440c36a75dad95e1fa12f6ff26a329cdd94b0.zip |
AVALANCHE: Repair ShootEmUp::updateTime().
Diffstat (limited to 'engines')
-rw-r--r-- | engines/avalanche/shootemup.cpp | 4 |
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); } |