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

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Tue Jan 25 03:51:26 CET 2011


Revision: 55516
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55516&view=rev
Author:   drmccoy
Date:     2011-01-25 02:51:26 +0000 (Tue, 25 Jan 2011)

Log Message:
-----------
GOB: o7_draw0xC4 is o7_opendBase

Not implemented for now, of course

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-25 02:50:56 UTC (rev 55515)
+++ scummvm/trunk/engines/gob/inter.h	2011-01-25 02:51:26 UTC (rev 55516)
@@ -606,7 +606,7 @@
 	void o7_draw0xA1();
 	void o7_draw0xA2();
 	void o7_draw0xA4();
-	void o7_draw0xC4();
+	void o7_opendBase();
 	void o7_draw0xC5();
 	void o7_draw0xC6();
 

Modified: scummvm/trunk/engines/gob/inter_v7.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v7.cpp	2011-01-25 02:50:56 UTC (rev 55515)
+++ scummvm/trunk/engines/gob/inter_v7.cpp	2011-01-25 02:51:26 UTC (rev 55516)
@@ -57,7 +57,7 @@
 	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 @@
 	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() {


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