AVALANCHE: Repair the ghost's animation.

Now it doesn't overlap with the bat's static picture on the bottom of
the screen.
This commit is contained in:
uruk 2014-02-08 16:54:40 +01:00
parent 2642b0640c
commit 3ebd83d197

View File

@ -252,7 +252,7 @@ void GhostRoom::run() {
for (int i = 0; i < 4; i++)
for (int j = 0; j < 5; j++) {
_vm->_graphics->drawFilledRectangle(Common::Rect(0, 96, 26 * 8, 169 + kAdjustment[j]), kColorBlack);
_vm->_graphics->drawFilledRectangle(Common::Rect(0, 96, 26 * 8, 169), kColorBlack);
_vm->_graphics->ghostDrawGhost(_ghost[kWaveOrder[j]], 0, 96 + kAdjustment[j]);
_vm->_graphics->refreshScreen();