diff options
author | Sven Hesse | 2011-01-29 22:49:40 +0000 |
---|---|---|
committer | Sven Hesse | 2011-01-29 22:49:40 +0000 |
commit | ec288c0603ab819061a329db1f290849bfd1e2ae (patch) | |
tree | 88b91fdc87f5098086f0fa5a9e96a07432eba84a /engines/gob | |
parent | 993a543432e57a519bd660902fc64d52dff41b45 (diff) | |
download | scummvm-rg350-ec288c0603ab819061a329db1f290849bfd1e2ae.tar.gz scummvm-rg350-ec288c0603ab819061a329db1f290849bfd1e2ae.tar.bz2 scummvm-rg350-ec288c0603ab819061a329db1f290849bfd1e2ae.zip |
GOB: Rename loadGroups/callGroup to loadFunctions/callFunctions
svn-id: r55638
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/inter.h | 4 | ||||
-rw-r--r-- | engines/gob/inter_v7.cpp | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/engines/gob/inter.h b/engines/gob/inter.h index b60f74d7d5..2dd1a22c1e 100644 --- a/engines/gob/inter.h +++ b/engines/gob/inter.h @@ -602,8 +602,8 @@ protected: 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(); diff --git a/engines/gob/inter_v7.cpp b/engines/gob/inter_v7.cpp index 14b58089cf..731d494938 100644 --- a/engines/gob/inter_v7.cpp +++ b/engines/gob/inter_v7.cpp @@ -53,8 +53,8 @@ void Inter_v7::setupOpcodesDraw() { 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 @@ void Inter_v7::o7_intToString() { 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() { |