GOB: Add o7_oemToANSI

I don't think that we'll need that :P

svn-id: r55522
This commit is contained in:
Sven Hesse 2011-01-25 03:44:34 +00:00
parent 2ce333bf16
commit e5304457b4
2 changed files with 8 additions and 0 deletions

View File

@ -610,6 +610,8 @@ protected:
void o7_draw0xC5();
void o7_draw0xC6();
void o7_oemToANSI(OpGobParams &params);
private:
void storeValue(uint16 index, uint16 type, uint32 value);
void storeValue(uint32 value);

View File

@ -69,6 +69,8 @@ void Inter_v7::setupOpcodesFunc() {
void Inter_v7::setupOpcodesGob() {
Inter_Playtoons::setupOpcodesGob();
OPCODEGOB(420, o7_oemToANSI);
}
void Inter_v7::o7_draw0x0C() {
@ -313,4 +315,8 @@ void Inter_v7::storeValue(uint32 value) {
storeValue(index, type, value);
}
void Inter_v7::o7_oemToANSI(OpGobParams &params) {
_vm->_game->_script->skip(2);
}
} // End of namespace Gob