From fa38b770afbe5b9bb7af732d2adadb8f37a203f4 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Thu, 16 Mar 2006 17:37:34 +0000 Subject: Oops. removes some unneeded shifts and fixes now the feather bug. svn-id: r21334 --- engines/kyra/animator.cpp | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/engines/kyra/animator.cpp b/engines/kyra/animator.cpp index 92b06a14a8..099ba9ef5c 100644 --- a/engines/kyra/animator.cpp +++ b/engines/kyra/animator.cpp @@ -178,10 +178,10 @@ void ScreenAnimator::preserveOrRestoreBackground(AnimObject *obj, bool restore) int x = 0, y = 0, width = obj->width << 3, height = obj->height; if (restore) { - x = obj->x2 >> 3; + x = obj->x2; y = obj->y2; } else { - x = obj->x1 >> 3; + x = obj->x1; y = obj->y1; } @@ -202,9 +202,9 @@ void ScreenAnimator::preserveOrRestoreBackground(AnimObject *obj, bool restore) } if (restore) { - _screen->copyBlockToPage(_screen->_curPage, x << 3, y, width, height, obj->background); + _screen->copyBlockToPage(_screen->_curPage, x, y, width, height, obj->background); } else { - _screen->copyRegionToBuffer(_screen->_curPage, x << 3, y, width, height, obj->background); + _screen->copyRegionToBuffer(_screen->_curPage, x, y, width, height, obj->background); } } @@ -373,14 +373,11 @@ void ScreenAnimator::copyChangedObjectsForward(int refreshFlag) { if (curObject->active) { if (curObject->refreshFlag || refreshFlag) { int xpos = 0, ypos = 0, width = 0, height = 0; - xpos = (curObject->x1>>3) - (curObject->width2>>3) - 1; + xpos = curObject->x1 - curObject->width2 - 8; ypos = curObject->y1 - curObject->height2; - width = curObject->width + (curObject->width2>>3) + 2; + width = (curObject->width<<3) + curObject->width2 + 16; height = curObject->height + curObject->height2*2; - xpos <<= 3; - width <<= 3; - if (xpos < 8) { xpos = 8; } else if (xpos + width > 312) { -- cgit v1.2.3