[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.262,1.263

Travis Howell kirben at users.sourceforge.net
Thu Jul 24 23:56:04 CEST 2003


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

Modified Files:
	simon.cpp 
Log Message:

Use correct frame rate value from disasm, fixes minor timing issue in simon 2 in
troduction.
Correct default _lock_counter value



Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -d -r1.262 -r1.263
--- simon.cpp	24 Jul 2003 15:15:35 -0000	1.262
+++ simon.cpp	25 Jul 2003 06:55:05 -0000	1.263
@@ -307,7 +307,7 @@
 	_need_hitarea_recalc = 0;
 	_verb_hitarea = 0;
 	_hitarea_unk_4 = 0;
-	_lock_counter = 200;
+	_lock_counter = 0;
 
 	_video_palette_mode = 0;
 
@@ -4171,6 +4171,8 @@
 
 	_system->init_size(320, 200);
 
+	vc_34_force_lock();
+	
 	startUp(1);
 }
 
@@ -4438,9 +4440,9 @@
 	if (_fast_mode)
 	 	vga_period = 10;
 	else if (_game & GF_SIMON2)
-		vga_period = 40;
-	else
 		vga_period = 45;
+	else
+		vga_period = 50;
 
 	_rnd.getRandomNumber(2);
 





More information about the Scummvm-git-logs mailing list