From 7d3b69251fa0dc3cca7fa5e3f8f86198050e8177 Mon Sep 17 00:00:00 2001 From: uruk Date: Sat, 27 Jul 2013 16:55:03 +0200 Subject: AVALANCHE: Minor repairs in Basher. --- engines/avalanche/basher2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/avalanche/basher2.cpp b/engines/avalanche/basher2.cpp index 16122fa664..007c0b5e67 100644 --- a/engines/avalanche/basher2.cpp +++ b/engines/avalanche/basher2.cpp @@ -93,7 +93,7 @@ void Basher::plottext() { for (byte bit = 0; bit < 8; bit++) { byte pixelBit = (pixel >> bit) & 1; if (pixelBit != 0) - *_vm->_graphics->getPixel(/*x * 8 + */ 24 + i * 8 + 7 - bit, 161 + j) = white; + *_vm->_graphics->getPixel(24 + i * 8 + 7 - bit, 161 + j) = white; } } @@ -205,7 +205,7 @@ void Basher::normal_edit() { /*if (!_vm->_gyro->current.empty()) _vm->_gyro->current.clear();*/ left_margin = 1; - _vm->_gyro->curpos = 1; + _vm->_gyro->curpos = 0; } } // End of namespace Avalanche. -- cgit v1.2.3