[Scummvm-cvs-logs] CVS: scummvm/scumm nut_renderer.cpp,1.41,1.42
Max Horn
fingolfin at users.sourceforge.net
Sun Feb 1 13:11:04 CET 2004
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14593
Modified Files:
nut_renderer.cpp
Log Message:
Fix for bug #880418 (COMI: Subtitle problems)
Index: nut_renderer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/nut_renderer.cpp,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- nut_renderer.cpp 15 Jan 2004 22:37:48 -0000 1.41
+++ nut_renderer.cpp 1 Feb 2004 21:08:46 -0000 1.42
@@ -263,7 +263,7 @@
y += offsetY[i];
color = cTable[i];
- if (y >= vs->height || x + vs->xstart >= vs->width) {
+ if (y >= vs->height || x >= vs->width) {
continue;
}
More information about the Scummvm-git-logs
mailing list