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

pidgeot at users.sourceforge.net pidgeot at users.sourceforge.net
Thu Aug 12 00:11:56 CEST 2010


Revision: 52011
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52011&view=rev
Author:   pidgeot
Date:     2010-08-11 22:11:56 +0000 (Wed, 11 Aug 2010)

Log Message:
-----------
DECOMPILER: Fix signature of Kyra detectMoreFuncs

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

Modified: tools/branches/gsoc2010-decompiler/decompiler/kyra/engine.cpp
===================================================================
--- tools/branches/gsoc2010-decompiler/decompiler/kyra/engine.cpp	2010-08-11 22:09:23 UTC (rev 52010)
+++ tools/branches/gsoc2010-decompiler/decompiler/kyra/engine.cpp	2010-08-11 22:11:56 UTC (rev 52011)
@@ -62,6 +62,6 @@
 	}
 }
 
-bool Kyra::Kyra2Engine::detectMoreFuncs() {
+bool Kyra::Kyra2Engine::detectMoreFuncs() const {
 	return true;
 }

Modified: tools/branches/gsoc2010-decompiler/decompiler/kyra/engine.h
===================================================================
--- tools/branches/gsoc2010-decompiler/decompiler/kyra/engine.h	2010-08-11 22:09:23 UTC (rev 52010)
+++ tools/branches/gsoc2010-decompiler/decompiler/kyra/engine.h	2010-08-11 22:11:56 UTC (rev 52011)
@@ -39,7 +39,7 @@
 	uint32 getDestAddress(ConstInstIterator it) const;
 	::CodeGenerator *getCodeGenerator(std::ostream &output);
 	void postCFG(std::vector<Instruction> &insts, Graph g);
-	bool detectMoreFuncs();
+	bool detectMoreFuncs() const;
 
 	std::vector<std::string> _textStrings; ///< Container for strings from the TEXT chunk.
 };


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