[Scummvm-cvs-logs] SF.net SVN: scummvm:[55522] scummvm/trunk/engines/gob
drmccoy at users.sourceforge.net
drmccoy at users.sourceforge.net
Tue Jan 25 04:44:34 CET 2011
Revision: 55522
http://scummvm.svn.sourceforge.net/scummvm/?rev=55522&view=rev
Author: drmccoy
Date: 2011-01-25 03:44:34 +0000 (Tue, 25 Jan 2011)
Log Message:
-----------
GOB: Add o7_oemToANSI
I don't think that we'll need that :P
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 03:44:07 UTC (rev 55521)
+++ scummvm/trunk/engines/gob/inter.h 2011-01-25 03:44:34 UTC (rev 55522)
@@ -610,6 +610,8 @@
void o7_draw0xC5();
void o7_draw0xC6();
+ void o7_oemToANSI(OpGobParams ¶ms);
+
private:
void storeValue(uint16 index, uint16 type, uint32 value);
void storeValue(uint32 value);
Modified: scummvm/trunk/engines/gob/inter_v7.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v7.cpp 2011-01-25 03:44:07 UTC (rev 55521)
+++ scummvm/trunk/engines/gob/inter_v7.cpp 2011-01-25 03:44:34 UTC (rev 55522)
@@ -69,6 +69,8 @@
void Inter_v7::setupOpcodesGob() {
Inter_Playtoons::setupOpcodesGob();
+
+ OPCODEGOB(420, o7_oemToANSI);
}
void Inter_v7::o7_draw0x0C() {
@@ -313,4 +315,8 @@
storeValue(index, type, value);
}
+void Inter_v7::o7_oemToANSI(OpGobParams ¶ms) {
+ _vm->_game->_script->skip(2);
+}
+
} // End of namespace Gob
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