diff options
author | uruk | 2013-08-12 14:27:36 +0200 |
---|---|---|
committer | uruk | 2013-08-12 14:27:36 +0200 |
commit | 2bbf25e948122d8ef9264a50d5cdb9c6c87f61c9 (patch) | |
tree | 18d2d6df825133a2ffcba8a21982de13540d60ca | |
parent | 670c7c4863e8f843f8b877005c50952065dfe246 (diff) | |
download | scummvm-rg350-2bbf25e948122d8ef9264a50d5cdb9c6c87f61c9.tar.gz scummvm-rg350-2bbf25e948122d8ef9264a50d5cdb9c6c87f61c9.tar.bz2 scummvm-rg350-2bbf25e948122d8ef9264a50d5cdb9c6c87f61c9.zip |
AVALANCHE: Repair Scrolls::bubble().
-rw-r--r-- | engines/avalanche/scrolls2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/avalanche/scrolls2.cpp b/engines/avalanche/scrolls2.cpp index 50254b5130..c8f20b5f6f 100644 --- a/engines/avalanche/scrolls2.cpp +++ b/engines/avalanche/scrolls2.cpp @@ -542,7 +542,7 @@ void Scrolls::bubble(func2 gotoit) { // The font is not the same that outtextxy() uses in Pascal. I don't have that, so I used Gyro::characters instead. // It's almost the same, only notable differences are '?', '!', etc. for (fv = 0; fv < _vm->_gyro->scrolln; fv++) { - int16 x = _vm->_gyro->talkx - _vm->_gyro->scroll[fv].size() / 2 * 8; + int16 x = xc + _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 * 4, (fv * 10) + 12, _vm->_gyro->talkf); } |