diff options
author | Sven Hesse | 2011-01-29 22:46:16 +0000 |
---|---|---|
committer | Sven Hesse | 2011-01-29 22:46:16 +0000 |
commit | 9b9c34a378be4f1964d97f5a15aa1ac5f7c54ee6 (patch) | |
tree | 4adc12f317c8e66b0533a6cb379d2c8a69f6806e /engines/gob | |
parent | ce3d4b5d1b06644a210fd7198373488ad4c8cdf4 (diff) | |
download | scummvm-rg350-9b9c34a378be4f1964d97f5a15aa1ac5f7c54ee6.tar.gz scummvm-rg350-9b9c34a378be4f1964d97f5a15aa1ac5f7c54ee6.tar.bz2 scummvm-rg350-9b9c34a378be4f1964d97f5a15aa1ac5f7c54ee6.zip |
GOB: o7_draw0x59 is o7_callGroup
svn-id: r55631
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/inter.h | 2 | ||||
-rw-r--r-- | engines/gob/inter_v7.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/gob/inter.h b/engines/gob/inter.h index a7dec07a71..f6e1a3e548 100644 --- a/engines/gob/inter.h +++ b/engines/gob/inter.h @@ -600,7 +600,7 @@ protected: void o7_displayWarning(); void o7_draw0x45(); void o7_intToString(); - void o7_draw0x59(); + void o7_callGroup(); void o7_draw0x89(); void o7_findFile(); void o7_getSystemProperty(); diff --git a/engines/gob/inter_v7.cpp b/engines/gob/inter_v7.cpp index 03f97655ba..eee5837911 100644 --- a/engines/gob/inter_v7.cpp +++ b/engines/gob/inter_v7.cpp @@ -53,7 +53,7 @@ void Inter_v7::setupOpcodesDraw() { OPCODEDRAW(0x44, o7_displayWarning); OPCODEDRAW(0x45, o7_draw0x45); OPCODEDRAW(0x57, o7_intToString); - OPCODEDRAW(0x59, o7_draw0x59); + OPCODEDRAW(0x59, o7_callGroup); OPCODEDRAW(0x89, o7_draw0x89); OPCODEDRAW(0x8A, o7_findFile); OPCODEDRAW(0x8C, o7_getSystemProperty); @@ -138,7 +138,7 @@ void Inter_v7::o7_intToString() { sprintf(GET_VARO_STR(destIndex), "%d", READ_VARO_UINT32(valueIndex)); } -void Inter_v7::o7_draw0x59() { +void Inter_v7::o7_callGroup() { _vm->_game->_script->evalExpr(0); Common::String str0 = _vm->_game->_script->getResultStr(); _vm->_game->_script->evalExpr(0); @@ -146,7 +146,7 @@ void Inter_v7::o7_draw0x59() { int16 expr0 = _vm->_game->_script->readValExpr(); - warning("Addy Stub Draw 0x59: \"%s\", \"%s\", %d", str0.c_str(), str1.c_str(), expr0); + warning("Addy Stub: Call group: \"%s\", \"%s\", %d", str0.c_str(), str1.c_str(), expr0); } void Inter_v7::o7_draw0x89() { |