From a01d502d2015b916b61a99ac0dcc0fcf1a289b78 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 25 May 2014 17:42:19 -0400 Subject: [PATCH] MADS: Fix drawing of background elements --- engines/mads/sprites.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/mads/sprites.cpp b/engines/mads/sprites.cpp index e4e57bd07bb..c98a0963f64 100644 --- a/engines/mads/sprites.cpp +++ b/engines/mads/sprites.cpp @@ -256,7 +256,7 @@ void SpriteSlots::drawBackground() { if (spriteSlot._depth <= 1) { - frame->copyTo(&scene._backgroundSurface, frame->getTransparencyIndex()); + frame->copyTo(&scene._backgroundSurface, pt, frame->getTransparencyIndex()); } else if (scene._depthStyle == 0) { scene._backgroundSurface.copyFrom(frame, pt, spriteSlot._depth, &scene._depthSurface, 100, frame->getTransparencyIndex());