[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.260,1.260.2.1

Travis Howell kirben at users.sourceforge.net
Thu Jul 24 23:55:02 CEST 2003


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

Modified Files:
      Tag: branch-0-5-0
	simon.cpp 
Log Message:

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


Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.260
retrieving revision 1.260.2.1
diff -u -d -r1.260 -r1.260.2.1
--- simon.cpp	22 Jul 2003 12:16:56 -0000	1.260
+++ simon.cpp	25 Jul 2003 06:54:13 -0000	1.260.2.1
@@ -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