From f8665509481d61a1f9a408bc7ddb88f202a73ed2 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 12 Oct 2014 14:38:04 -0400 Subject: [PATCH] MADS: Depth style 2 frames can be drawn using existing methods --- 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 cd358077b526..6cb55aaeee48 100644 --- a/engines/mads/sprites.cpp +++ b/engines/mads/sprites.cpp @@ -262,7 +262,7 @@ void SpriteSlots::drawBackground() { scene._backgroundSurface.copyFrom(frame, pt, spriteSlot._depth, &scene._depthSurface, -1, false, frame->getTransparencyIndex()); } else { - error("Unsupported depth style"); + frame->copyTo(&scene._backgroundSurface, pt, frame->getTransparencyIndex()); } } }