aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authoruruk2013-07-27 15:07:21 +0200
committeruruk2013-07-27 15:07:21 +0200
commit9c96417041ed16c1025fcf0fda7dc2b51a9dcf83 (patch)
treea95cb34c5499d68cd7a81852e3197bc93cdb9e4d /engines
parentde97da2fe64fb713d547441a7510c71828376bb1 (diff)
downloadscummvm-rg350-9c96417041ed16c1025fcf0fda7dc2b51a9dcf83.tar.gz
scummvm-rg350-9c96417041ed16c1025fcf0fda7dc2b51a9dcf83.tar.bz2
scummvm-rg350-9c96417041ed16c1025fcf0fda7dc2b51a9dcf83.zip
AVALANCHE: Add comments to Basher::plottext().
Diffstat (limited to 'engines')
-rw-r--r--engines/avalanche/basher2.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/avalanche/basher2.cpp b/engines/avalanche/basher2.cpp
index 5f873225f2..355bdaf715 100644
--- a/engines/avalanche/basher2.cpp
+++ b/engines/avalanche/basher2.cpp
@@ -84,8 +84,9 @@ void Basher::plottext() {
cursor_off();
- _vm->_graphics->drawBar(24, 161, 640, 169, black);
+ _vm->_graphics->drawBar(24, 161, 640, 169, black); // Black out the line of the text.
+ // Draw the text. Similar to chalk(), but here we don't have to bother with the color of the characters.
for (byte i = 0; i < _vm->_gyro->current.size(); i++)
for (byte j = 0; j < 8; j++) {
byte pixel = _vm->_gyro->little[_vm->_gyro->current[i]][j];