diff options
author | Sven Hesse | 2011-01-25 02:51:26 +0000 |
---|---|---|
committer | Sven Hesse | 2011-01-25 02:51:26 +0000 |
commit | c293eb60738c9f5941d011fdffe41a857f9f8d69 (patch) | |
tree | 44e475fba6c0f67bbde079cb8af22be8b26046f2 | |
parent | c8997d0ef8714cd7a12b22626d102b0ceefcd5e4 (diff) | |
download | scummvm-rg350-c293eb60738c9f5941d011fdffe41a857f9f8d69.tar.gz scummvm-rg350-c293eb60738c9f5941d011fdffe41a857f9f8d69.tar.bz2 scummvm-rg350-c293eb60738c9f5941d011fdffe41a857f9f8d69.zip |
GOB: o7_draw0xC4 is o7_opendBase
Not implemented for now, of course
svn-id: r55516
-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 c603c5d1d7..07f2f74167 100644 --- a/engines/gob/inter.h +++ b/engines/gob/inter.h @@ -606,7 +606,7 @@ protected: void o7_draw0xA1(); void o7_draw0xA2(); void o7_draw0xA4(); - void o7_draw0xC4(); + void o7_opendBase(); void o7_draw0xC5(); void o7_draw0xC6(); diff --git a/engines/gob/inter_v7.cpp b/engines/gob/inter_v7.cpp index 8dad1416ff..6f15a897b1 100644 --- a/engines/gob/inter_v7.cpp +++ b/engines/gob/inter_v7.cpp @@ -57,7 +57,7 @@ void Inter_v7::setupOpcodesDraw() { OPCODEDRAW(0xA1, o7_draw0xA1); OPCODEDRAW(0xA2, o7_draw0xA2); OPCODEDRAW(0xA4, o7_draw0xA4); - OPCODEDRAW(0xC4, o7_draw0xC4); + OPCODEDRAW(0xC4, o7_opendBase); OPCODEDRAW(0xC5, o7_draw0xC5); OPCODEDRAW(0xC6, o7_draw0xC6); } @@ -224,13 +224,13 @@ void Inter_v7::o7_draw0xA4() { warning("Addy Stub Draw 0xA4: \"%s\", %d, %d", str0.c_str(), expr0, expr1); } -void Inter_v7::o7_draw0xC4() { +void Inter_v7::o7_opendBase() { _vm->_game->_script->evalExpr(0); Common::String str0 = _vm->_game->_script->getResultStr(); _vm->_game->_script->evalExpr(0); Common::String str1 = _vm->_game->_script->getResultStr(); - warning("Addy Stub Draw 0xC4: \"%s\", \"%s\"", str0.c_str(), str1.c_str()); + warning("Addy Stub: Open dBase file \"%s.dbf\" (%s)", str0.c_str(), str1.c_str()); } void Inter_v7::o7_draw0xC5() { |