[Scummvm-cvs-logs] SF.net SVN: scummvm: [21848] scummvm/trunk/engines/gob/draw_v2.cpp
drmccoy at users.sourceforge.net
drmccoy at users.sourceforge.net
Thu Apr 13 14:10:09 CEST 2006
Revision: 21848
Author: drmccoy
Date: 2006-04-13 14:09:39 -0700 (Thu, 13 Apr 2006)
ViewCVS: http://svn.sourceforge.net/scummvm/?rev=21848&view=rev
Log Message:
-----------
Commented the SpriteOperation in Draw_v2::printText() out for now,
they are responsible for background mess-ups in the intro
Modified Paths:
--------------
scummvm/trunk/engines/gob/draw_v2.cpp
Modified: scummvm/trunk/engines/gob/draw_v2.cpp
===================================================================
--- scummvm/trunk/engines/gob/draw_v2.cpp 2006-04-13 20:56:22 UTC (rev 21847)
+++ scummvm/trunk/engines/gob/draw_v2.cpp 2006-04-13 21:09:39 UTC (rev 21848)
@@ -83,7 +83,7 @@
_backColor = *ptr++;
_transparency = 1;
- spriteOperation(DRAW_CLEARRECT);
+// spriteOperation(DRAW_CLEARRECT);
_backColor = 0;
savedFlags = _renderFlags;
@@ -99,13 +99,13 @@
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;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list