diff options
| author | uruk | 2013-07-27 15:07:21 +0200 | 
|---|---|---|
| committer | uruk | 2013-07-27 15:07:21 +0200 | 
| commit | 9c96417041ed16c1025fcf0fda7dc2b51a9dcf83 (patch) | |
| tree | a95cb34c5499d68cd7a81852e3197bc93cdb9e4d | |
| parent | de97da2fe64fb713d547441a7510c71828376bb1 (diff) | |
| download | scummvm-rg350-9c96417041ed16c1025fcf0fda7dc2b51a9dcf83.tar.gz scummvm-rg350-9c96417041ed16c1025fcf0fda7dc2b51a9dcf83.tar.bz2 scummvm-rg350-9c96417041ed16c1025fcf0fda7dc2b51a9dcf83.zip | |
AVALANCHE: Add comments to Basher::plottext().
| -rw-r--r-- | engines/avalanche/basher2.cpp | 3 | 
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]; | 
