diff options
author | uruk | 2013-09-07 12:48:15 +0200 |
---|---|---|
committer | uruk | 2013-09-07 12:48:15 +0200 |
commit | cfd7d06539e32ca088f01cd13e8b328aef801e24 (patch) | |
tree | dd64f0e5700b3de2cdb7d1d1e0d253f23dcf1c82 /engines/avalanche | |
parent | cb05ea9bc6d04952e6cfc84ea9325b6a5e89bba1 (diff) | |
download | scummvm-rg350-cfd7d06539e32ca088f01cd13e8b328aef801e24.tar.gz scummvm-rg350-cfd7d06539e32ca088f01cd13e8b328aef801e24.tar.bz2 scummvm-rg350-cfd7d06539e32ca088f01cd13e8b328aef801e24.zip |
AVALANCHE: Fix bug due to unsaved changes.
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/scrolls2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/scrolls2.cpp b/engines/avalanche/scrolls2.cpp index 4105c16f10..67247a4483 100644 --- a/engines/avalanche/scrolls2.cpp +++ b/engines/avalanche/scrolls2.cpp @@ -426,8 +426,8 @@ void Scrolls::drawscroll(func2 gotoit) { // This is one of the oldest procs in t _vm->_gyro->_scroll[b].setChar(' ', 0); // byte groi = *_vm->_graphics->getPixel(0, 0); // inc(diy,14); - _vm->_gyro->shadowBox(dix - 65, diy - 24, dix - 5, diy - 10, "Yes."); - _vm->_gyro->shadowBox(dix + 5, diy - 24, dix + 65, diy - 10, "No."); + _vm->_gyro->drawShadowBox(dix - 65, diy - 24, dix - 5, diy - 10, "Yes."); + _vm->_gyro->drawShadowBox(dix + 5, diy - 24, dix + 65, diy - 10, "No."); } break; } |