[Scummvm-cvs-logs] SF.net SVN: scummvm:[52118] tools/branches/gsoc2010-decompiler/decompiler/ kyra/codegen.h
pidgeot at users.sourceforge.net
pidgeot at users.sourceforge.net
Mon Aug 16 14:16:54 CEST 2010
Revision: 52118
http://scummvm.svn.sourceforge.net/scummvm/?rev=52118&view=rev
Author: pidgeot
Date: 2010-08-16 12:16:53 +0000 (Mon, 16 Aug 2010)
Log Message:
-----------
DECDECOMPILER: REALLY fix Kyra argument ordering
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 11:04:34 UTC (rev 52117)
+++ tools/branches/gsoc2010-decompiler/decompiler/kyra/codegen.h 2010-08-16 12:16:53 UTC (rev 52118)
@@ -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, kFIFOArgOrder, kFIFOArgOrder) {}
+ Kyra2CodeGenerator(Engine *engine, std::ostream &output) : CodeGenerator(engine, output, kFIFOArgOrder, kLIFOArgOrder) {}
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