From a3cd0bd17d82ee1a5ef7e352b18ca575861f4173 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Thu, 13 Apr 2006 21:09:39 +0000 Subject: Commented the SpriteOperation in Draw_v2::printText() out for now, they are responsible for background mess-ups in the intro svn-id: r21848 --- engines/gob/draw_v2.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engines/gob/draw_v2.cpp b/engines/gob/draw_v2.cpp index 72d10e2989..97a4b596a4 100644 --- a/engines/gob/draw_v2.cpp +++ b/engines/gob/draw_v2.cpp @@ -83,7 +83,7 @@ void Draw_v2::printText(void) { _backColor = *ptr++; _transparency = 1; - spriteOperation(DRAW_CLEARRECT); +// spriteOperation(DRAW_CLEARRECT); _backColor = 0; savedFlags = _renderFlags; @@ -99,13 +99,13 @@ void Draw_v2::printText(void) { cmd = (*ptr & 0xf0) >> 4; if (cmd == 0) { _frontColor = *ptr & 0xf; - spriteOperation(DRAW_DRAWLINE); +// spriteOperation(DRAW_DRAWLINE); } else if (cmd == 1) { _frontColor = *ptr & 0xf; - spriteOperation(DRAW_DRAWBAR); +// spriteOperation(DRAW_DRAWBAR); } else if (cmd == 2) { _backColor = *ptr & 0xf; - spriteOperation(DRAW_FILLRECTABS); +// spriteOperation(DRAW_FILLRECTABS); } } ptr += 2; -- cgit v1.2.3