SCI: fixing transition 9

fixes castle of dr. brain intro on amiga

svn-id: r51323
This commit is contained in:
Martin Kiewitz 2010-07-26 16:49:04 +00:00
parent f6e0c2dd2c
commit 18a54f086f

View File

@ -539,7 +539,7 @@ void GfxTransitions::verticalRollFromCenter(bool blackoutFlag) {
// only
void GfxTransitions::verticalRollToCenter(bool blackoutFlag) {
Common::Rect leftRect = Common::Rect(_picRect.left, _picRect.top, _picRect.left + 1, _picRect.bottom);
Common::Rect rightRect = Common::Rect(leftRect.right - 1, _picRect.top, leftRect.right, _picRect.bottom);
Common::Rect rightRect = Common::Rect(_picRect.right - 1, _picRect.top, _picRect.right, _picRect.bottom);
while (leftRect.left < rightRect.right) {
copyRectToScreen(leftRect, blackoutFlag); leftRect.translate(1, 0);