diff options
author | Sven Hesse | 2006-04-13 21:09:39 +0000 |
---|---|---|
committer | Sven Hesse | 2006-04-13 21:09:39 +0000 |
commit | a3cd0bd17d82ee1a5ef7e352b18ca575861f4173 (patch) | |
tree | c24f595c9b77878d735d6eebc3921c67d01d3081 /engines/gob | |
parent | 3bed2d377e8431aa94334f7bc9c307875c229c54 (diff) | |
download | scummvm-rg350-a3cd0bd17d82ee1a5ef7e352b18ca575861f4173.tar.gz scummvm-rg350-a3cd0bd17d82ee1a5ef7e352b18ca575861f4173.tar.bz2 scummvm-rg350-a3cd0bd17d82ee1a5ef7e352b18ca575861f4173.zip |
Commented the SpriteOperation in Draw_v2::printText() out for now,
they are responsible for background mess-ups in the intro
svn-id: r21848
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/draw_v2.cpp | 8 |
1 files 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; |