[Scummvm-cvs-logs] SF.net SVN: scummvm:[41926] scummvm/branches/gsoc2009-draci/engines/draci/ draci.cpp

dkasak13 at users.sourceforge.net dkasak13 at users.sourceforge.net
Sun Jun 28 17:28:21 CEST 2009


Revision: 41926
          http://scummvm.svn.sourceforge.net/scummvm/?rev=41926&view=rev
Author:   dkasak13
Date:     2009-06-28 15:28:20 +0000 (Sun, 28 Jun 2009)

Log Message:
-----------
Removed disassembling of the GPL script for the first game location from Draci::init().

Modified Paths:
--------------
    scummvm/branches/gsoc2009-draci/engines/draci/draci.cpp

Modified: scummvm/branches/gsoc2009-draci/engines/draci/draci.cpp
===================================================================
--- scummvm/branches/gsoc2009-draci/engines/draci/draci.cpp	2009-06-28 13:10:53 UTC (rev 41925)
+++ scummvm/branches/gsoc2009-draci/engines/draci/draci.cpp	2009-06-28 15:28:20 UTC (rev 41926)
@@ -94,23 +94,6 @@
 		debugC(3, kDraciGeneralDebugLevel, "0x%02x%c", f->_data[i], (i < 9) ? ' ' : '\n');
 	}
 
-	// Read in GPL script for the first game location	
-	debugC(2, kDraciBytecodeDebugLevel, "Disassembling GPL script " 
-		"for the first game location...");		
-
-	path = "MIST.DFW";
-	ar.openArchive(path);
-	
-	if(ar.isOpen()) {
-		f = ar[3];	
-	} else {
-		debugC(2, kDraciGeneralDebugLevel, "ERROR - Archive not opened");
-		return Common::kUnknownError;
-	}	
-
-	// Disassemble GPL script for the first location
-	_script->run(f->_data, f->_length);
-
 	return Common::kNoError;
 }
 


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