[Scummvm-cvs-logs] SF.net SVN: scummvm:[52116] tools/branches/gsoc2010-decompiler/decompiler/ kyra/codegen.h

pidgeot at users.sourceforge.net pidgeot at users.sourceforge.net
Mon Aug 16 12:54:30 CEST 2010


Revision: 52116
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52116&view=rev
Author:   pidgeot
Date:     2010-08-16 10:54:30 +0000 (Mon, 16 Aug 2010)

Log Message:
-----------
DECOMPILER: Fix argument ordering for Kyra

Modified Paths:
--------------
    tools/branches/gsoc2010-decompiler/decompiler/kyra/codegen.h

Modified: tools/branches/gsoc2010-decompiler/decompiler/kyra/codegen.h
===================================================================
--- tools/branches/gsoc2010-decompiler/decompiler/kyra/codegen.h	2010-08-16 10:09:44 UTC (rev 52115)
+++ tools/branches/gsoc2010-decompiler/decompiler/kyra/codegen.h	2010-08-16 10:54:30 UTC (rev 52116)
@@ -56,7 +56,7 @@
 	 * @param engine Pointer to the Engine used for the script.
 	 * @param output The std::ostream to output the code to.
 	 */
-	Kyra2CodeGenerator(Engine *engine, std::ostream &output) : CodeGenerator(engine, output, kLIFOArgOrder, kLIFOArgOrder) {}
+	Kyra2CodeGenerator(Engine *engine, std::ostream &output) : CodeGenerator(engine, output, kFIFOArgOrder, kFIFOArgOrder) {}
 protected:
 	void processInst(const Instruction inst);
 	virtual void processSpecialMetadata(const Instruction &inst, char c, int pos);


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