diff options
author | uruk | 2013-08-12 14:17:42 +0200 |
---|---|---|
committer | uruk | 2013-08-12 14:17:42 +0200 |
commit | 670c7c4863e8f843f8b877005c50952065dfe246 (patch) | |
tree | 6999f3727ef1c9fc8bdc45d9772fa1ebd191ca90 /engines/avalanche | |
parent | 20c2a756b28af4b231a00ff620dd7ad8d8496eb1 (diff) | |
download | scummvm-rg350-670c7c4863e8f843f8b877005c50952065dfe246.tar.gz scummvm-rg350-670c7c4863e8f843f8b877005c50952065dfe246.tar.bz2 scummvm-rg350-670c7c4863e8f843f8b877005c50952065dfe246.zip |
AVALANCHE: Repair Scrolls::bubble() and Visa::talkto().
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/scrolls2.cpp | 2 | ||||
-rw-r--r-- | engines/avalanche/visa2.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/scrolls2.cpp b/engines/avalanche/scrolls2.cpp index d5ce2f0bb1..50254b5130 100644 --- a/engines/avalanche/scrolls2.cpp +++ b/engines/avalanche/scrolls2.cpp @@ -544,7 +544,7 @@ void Scrolls::bubble(func2 gotoit) { for (fv = 0; fv < _vm->_gyro->scrolln; fv++) { int16 x = _vm->_gyro->talkx - _vm->_gyro->scroll[fv].size() / 2 * 8; bool offset = _vm->_gyro->scroll[fv].size() % 2; - _vm->_graphics->drawText(_vm->_graphics->_scrolls, _vm->_gyro->scroll[fv], _vm->_gyro->characters, 8, x - offset * 12, (fv * 10) + 12, white); + _vm->_graphics->drawText(_vm->_graphics->_scrolls, _vm->_gyro->scroll[fv], _vm->_gyro->characters, 8, x - offset * 4, (fv * 10) + 12, _vm->_gyro->talkf); } for (fv = 0; fv < _vm->_gyro->scrolln; fv++) /* These should be separate loops. */ diff --git a/engines/avalanche/visa2.cpp b/engines/avalanche/visa2.cpp index 72e49344bc..082b07a7b6 100644 --- a/engines/avalanche/visa2.cpp +++ b/engines/avalanche/visa2.cpp @@ -277,7 +277,7 @@ void Visa::talkto(byte whom) { if (!went_ok) dixi('n', whom); // File not found! - if ((_vm->_gyro->subjnumber == 0) && ((whom + 149) == _vm->_gyro->pcrapulus)) { // Crapulus: get the badge - first time only + if ((_vm->_gyro->subjnumber == 0) && ((whom + 227) == _vm->_gyro->pcrapulus)) { // Crapulus: get the badge - first time only _vm->_gyro->dna.obj[_vm->_gyro->badge] = true; _vm->_lucerna->objectlist(); dixi('q', 1); // Circular from Cardiff. |