[Scummvm-cvs-logs] CVS: scummvm/scumm vars.cpp,1.120,1.121

kirben kirben at users.sourceforge.net
Sat Apr 16 20:10:19 CEST 2005


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

Modified Files:
	vars.cpp 
Log Message:

Missing brackets.


Index: vars.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/vars.cpp,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -d -r1.120 -r1.121
--- vars.cpp	16 Apr 2005 15:21:19 -0000	1.120
+++ vars.cpp	17 Apr 2005 03:09:03 -0000	1.121
@@ -513,11 +513,12 @@
 			VAR(VAR_NUM_CHARSETS) = _numCharsets - 1;
 			VAR(VAR_NUM_GLOBAL_OBJS) = _numGlobalObjects - 1;
 		}
-		if (_heversion >= 80)
+		if (_heversion >= 80) {
 			VAR(78) = 1;
 			VAR(VAR_WINDOWS_VERSION) = 40;
 
 			VAR(VAR_NUM_ACTIVE_SOUND_CHANNELS) = (_heversion >= 90) ? 8 : 4;
+		}
 		if (_heversion >= 90) {
 			VAR(VAR_SCRIPT_CYCLE) = 1;
 			VAR(VAR_NUM_SCRIPT_CYCLES) = 1;





More information about the Scummvm-git-logs mailing list