[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.25,2.26
Max Horn
fingolfin at users.sourceforge.net
Sat Jan 18 11:17:03 CET 2003
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv20713
Modified Files:
gfx.cpp
Log Message:
small drawing optimization for V7/V8 games - tell me if that causes any regressions
Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.25
retrieving revision 2.26
diff -u -d -r2.25 -r2.26
--- gfx.cpp 16 Jan 2003 17:37:34 -0000 2.25
+++ gfx.cpp 18 Jan 2003 19:16:23 -0000 2.26
@@ -436,9 +436,10 @@
w += 8;
continue;
}
- if (_vm->_features & GF_AFTER_V7)
- drawStripToScreen(vs, start * 8, w, 0, vs->height);
- else
+ // FIXME - why was this code in there? I don't see why it would be needed...
+// if (_vm->_features & GF_AFTER_V7)
+// drawStripToScreen(vs, start * 8, w, 0, vs->height);
+// else
drawStripToScreen(vs, start * 8, w, top, bottom);
w = 8;
}
More information about the Scummvm-git-logs
mailing list