[Scummvm-cvs-logs] SF.net SVN: scummvm:[55638] scummvm/trunk/engines/gob

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Sat Jan 29 23:49:40 CET 2011


Revision: 55638
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55638&view=rev
Author:   drmccoy
Date:     2011-01-29 22:49:40 +0000 (Sat, 29 Jan 2011)

Log Message:
-----------
GOB: Rename loadGroups/callGroup to loadFunctions/callFunctions

Modified Paths:
--------------
    scummvm/trunk/engines/gob/inter.h
    scummvm/trunk/engines/gob/inter_v7.cpp

Modified: scummvm/trunk/engines/gob/inter.h
===================================================================
--- scummvm/trunk/engines/gob/inter.h	2011-01-29 22:49:15 UTC (rev 55637)
+++ scummvm/trunk/engines/gob/inter.h	2011-01-29 22:49:40 UTC (rev 55638)
@@ -602,8 +602,8 @@
 	void o7_displayWarning();
 	void o7_draw0x45();
 	void o7_intToString();
-	void o7_callGroup();
-	void o7_loadGroups();
+	void o7_callFunction();
+	void o7_loadFunctions();
 	void o7_draw0x89();
 	void o7_findFile();
 	void o7_getSystemProperty();

Modified: scummvm/trunk/engines/gob/inter_v7.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v7.cpp	2011-01-29 22:49:15 UTC (rev 55637)
+++ scummvm/trunk/engines/gob/inter_v7.cpp	2011-01-29 22:49:40 UTC (rev 55638)
@@ -53,8 +53,8 @@
 	OPCODEDRAW(0x44, o7_displayWarning);
 	OPCODEDRAW(0x45, o7_draw0x45);
 	OPCODEDRAW(0x57, o7_intToString);
-	OPCODEDRAW(0x59, o7_callGroup);
-	OPCODEDRAW(0x5A, o7_loadGroups);
+	OPCODEDRAW(0x59, o7_callFunction);
+	OPCODEDRAW(0x5A, o7_loadFunctions);
 	OPCODEDRAW(0x89, o7_draw0x89);
 	OPCODEDRAW(0x8A, o7_findFile);
 	OPCODEDRAW(0x8C, o7_getSystemProperty);
@@ -130,21 +130,21 @@
 	sprintf(GET_VARO_STR(destIndex), "%d", READ_VARO_UINT32(valueIndex));
 }
 
-void Inter_v7::o7_callGroup() {
+void Inter_v7::o7_callFunction() {
 	Common::String str0 = _vm->_game->_script->evalString();
 	Common::String str1 = _vm->_game->_script->evalString();
 
 	int16 expr0 = _vm->_game->_script->readValExpr();
 
-	warning("Addy Stub: Call group: \"%s\", \"%s\", %d", str0.c_str(), str1.c_str(), expr0);
+	warning("Addy Stub: Call function: \"%s\", \"%s\", %d", str0.c_str(), str1.c_str(), expr0);
 }
 
-void Inter_v7::o7_loadGroups() {
+void Inter_v7::o7_loadFunctions() {
 	Common::String str0 = _vm->_game->_script->evalString();
 
 	int16 expr0 = _vm->_game->_script->readValExpr();
 
-	warning("Addy Stub: Load groups: \"%s\", %d", str0.c_str(), expr0);
+	warning("Addy Stub: Load functions: \"%s\", %d", str0.c_str(), expr0);
 }
 
 void Inter_v7::o7_draw0x89() {


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