[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.346,2.347

Max Horn fingolfin at users.sourceforge.net
Mon Sep 27 15:36:02 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26066

Modified Files:
	gfx.cpp 
Log Message:
Fix for bug #1035184 (ALL: Transition FX not working anymore)

Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.346
retrieving revision 2.347
diff -u -d -r2.346 -r2.347
--- gfx.cpp	27 Sep 2004 21:07:27 -0000	2.346
+++ gfx.cpp	27 Sep 2004 22:29:35 -0000	2.347
@@ -456,7 +456,7 @@
 	assert(_textSurface.pixels);
 	assert(_compositeBuf);
 	
-	if (width > vs->w - x);
+	if (width > vs->w - x)
 		width = vs->w - x;
 
 	// Clip to the visible part of the scene





More information about the Scummvm-git-logs mailing list