diff options
-rw-r--r-- | engines/m4/mads_views.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/m4/mads_views.cpp b/engines/m4/mads_views.cpp index 1184ab81e7..dd5eb7a266 100644 --- a/engines/m4/mads_views.cpp +++ b/engines/m4/mads_views.cpp @@ -158,11 +158,11 @@ void MadsSpriteSlots::drawBackground(int yOffset) { if (slot.depth > 1) { // Draw the frame with depth processing - _owner._bgSurface->copyFrom(frame, xp, yp, Common::Point(0, yOffset), slot.depth, + _owner._bgSurface->copyFrom(frame, xp, yp, Common::Point(), slot.depth, _owner._depthSurface, 100, frame->getTransparencyIndex()); } else { // No depth, so simply draw the image - frame->copyTo(_owner._bgSurface, xp, yp + yOffset, frame->getTransparencyIndex()); + frame->copyTo(_owner._bgSurface, xp, yp, frame->getTransparencyIndex()); } } } |