[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.398,1.399 vga.cpp,1.106,1.107

Travis Howell kirben at users.sourceforge.net
Tue Dec 23 01:09:03 CET 2003


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

Modified Files:
	simon.cpp vga.cpp 
Log Message:

Add correct value from simon2dos disasm.
Last value was guess for smooth scrolling.


Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.398
retrieving revision 1.399
diff -u -d -r1.398 -r1.399
--- simon.cpp	23 Dec 2003 09:03:29 -0000	1.398
+++ simon.cpp	23 Dec 2003 09:08:11 -0000	1.399
@@ -2543,7 +2543,7 @@
 		}
 	}
 
-	add_vga_timer(2, NULL, 0, 0);
+	add_vga_timer(6, NULL, 0, 0);
 }
 
 void SimonEngine::vc_resume_sprite(byte *code_ptr, uint16 cur_file, uint16 cur_sprite) {

Index: vga.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/vga.cpp,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -d -r1.106 -r1.107
--- vga.cpp	23 Dec 2003 08:59:30 -0000	1.106
+++ vga.cpp	23 Dec 2003 09:08:11 -0000	1.107
@@ -1417,7 +1417,7 @@
 			tmp = _vga_var1 - _x_scroll;
 			if (tmp < 20)
 				_vga_var2 = tmp;
-			add_vga_timer(2, NULL, 0, 0);	/* special timer */
+			add_vga_timer(6, NULL, 0, 0);	/* special timer */
 		}
 	}
 no_scroll:;
@@ -1446,7 +1446,7 @@
 			tmp = _vga_var1 - _x_scroll;
 			if (_x_scroll < 20)
 				_vga_var2 = -_x_scroll;
-			add_vga_timer(2, NULL, 0, 0);	/* special timer */
+			add_vga_timer(6, NULL, 0, 0);	/* special timer */
 		}
 	}
 no_scroll:;





More information about the Scummvm-git-logs mailing list