[Scummvm-cvs-logs] CVS: scummvm/scumm debugger.cpp,1.24,1.25

Jonathan Gray khalek at users.sourceforge.net
Tue Apr 22 22:11:04 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv23593

Modified Files:
	debugger.cpp 
Log Message:
hmm

Index: debugger.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/debugger.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- debugger.cpp	23 Apr 2003 05:05:20 -0000	1.24
+++ debugger.cpp	23 Apr 2003 05:10:17 -0000	1.25
@@ -407,10 +407,11 @@
 	
 	scriptnum = atoi(argv[1]);
 	
-	if (scriptnum >= _s->_maxScripts) {
-		Debug_Printf("Script number %d is out of range (range: 1 - %d)\n", scriptnum, _s->_maxScripts);
-		return true;
-	}
+	// FIXME: what is the max range on these?
+	// if (scriptnum >= _s->_maxScripts) {
+	//	Debug_Printf("Script number %d is out of range (range: 1 - %d)\n", scriptnum, _s->_maxScripts);
+	//	return true;
+	//}
 	
 	if ((!strcmp(argv[2], "kill")) || (!strcmp(argv[2], "stop"))) {
 		_s->stopScriptNr(scriptnum);





More information about the Scummvm-git-logs mailing list