[Scummvm-cvs-logs] CVS: scummvm/simon vga.cpp,1.50,1.51

Max Horn fingolfin at users.sourceforge.net
Wed May 21 04:24:20 CEST 2003


Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1:/tmp/cvs-serv19580

Modified Files:
	vga.cpp 
Log Message:
fixed warning

Index: vga.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/vga.cpp,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- vga.cpp	21 May 2003 06:13:47 -0000	1.50
+++ vga.cpp	21 May 2003 11:23:53 -0000	1.51
@@ -1837,7 +1837,7 @@
 	// track and, if not, whether to switch to
 	// a different track upon completion.
 	midi.setLoop (loop != 0);
-	if (track != -1 && track != 999)
+	if (track != 0xFFFF && track != 999)
 		midi.queueTrack (track, 0);
 }
 





More information about the Scummvm-git-logs mailing list