aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruruk2013-07-27 16:55:03 +0200
committeruruk2013-07-27 16:55:03 +0200
commit7d3b69251fa0dc3cca7fa5e3f8f86198050e8177 (patch)
treec14c9012efcfa31d48ca0db54b579ff1adce2241
parentbda09042b584f1b5f0ad77cc35f53e953a3dd2ef (diff)
downloadscummvm-rg350-7d3b69251fa0dc3cca7fa5e3f8f86198050e8177.tar.gz
scummvm-rg350-7d3b69251fa0dc3cca7fa5e3f8f86198050e8177.tar.bz2
scummvm-rg350-7d3b69251fa0dc3cca7fa5e3f8f86198050e8177.zip
AVALANCHE: Minor repairs in Basher.
-rw-r--r--engines/avalanche/basher2.cpp4
1 files 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.