[Scummvm-cvs-logs] SF.net SVN: scummvm: [32200] scummvm/trunk/engines/made/script.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue May 20 20:56:22 CEST 2008


Revision: 32200
          http://scummvm.svn.sourceforge.net/scummvm/?rev=32200&view=rev
Author:   thebluegr
Date:     2008-05-20 11:56:22 -0700 (Tue, 20 May 2008)

Log Message:
-----------
Some updates to the script dumper

Modified Paths:
--------------
    scummvm/trunk/engines/made/script.cpp

Modified: scummvm/trunk/engines/made/script.cpp
===================================================================
--- scummvm/trunk/engines/made/script.cpp	2008-05-20 18:30:26 UTC (rev 32199)
+++ scummvm/trunk/engines/made/script.cpp	2008-05-20 18:56:22 UTC (rev 32200)
@@ -431,9 +431,6 @@
 		return;
 	}
 
-	if (_dumpScripts)
-		return;
-
 	int16 funcResult = _stack.top();
 	_stack.setStackPos(_localStackPos);
 	_localStackPos = kScriptStackLimit - _stack.pop();
@@ -450,9 +447,6 @@
 	debug(4, "\nENTER: stackPtr = %d; _localStackPos = %d", _stack.getStackPos(), _localStackPos);
 	byte argc = readByte();
 
-	if (_dumpScripts)
-		return;
-
 	_stack.push(argc);
 	_stack.push(_codeIp - _codeBase);
 	_stack.push(_runningScriptObjectIndex);
@@ -573,9 +567,6 @@
 	
 	debug(4, "argc = %d", argc);
 	
-	if (_dumpScripts)
-		return;
-
 	_stack.push(argc);
 	_stack.push(_codeIp - _codeBase);
 	_stack.push(_runningScriptObjectIndex);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list