GOB: Add o7_gob0x201

svn-id: r55737
This commit is contained in:
Sven Hesse 2011-02-02 19:52:47 +00:00
parent 832cfddf34
commit c1967c1a0a
2 changed files with 8 additions and 0 deletions

View File

@ -623,6 +623,7 @@ protected:
void o7_getDBString();
void o7_oemToANSI(OpGobParams &params);
void o7_gob0x201(OpGobParams &params);
private:
INIConfig _inis;

View File

@ -81,6 +81,7 @@ void Inter_v7::setupOpcodesGob() {
Inter_Playtoons::setupOpcodesGob();
OPCODEGOB(420, o7_oemToANSI);
OPCODEGOB(513, o7_oemToANSI);
}
void Inter_v7::o7_draw0x0C() {
@ -591,4 +592,10 @@ void Inter_v7::storeString(const char *value) {
storeString(varIndex, type, value);
}
void Inter_v7::o7_gob0x201(OpGobParams &params) {
uint16 varIndex = _vm->_game->_script->readUint16();
WRITE_VAR(varIndex, 1);
}
} // End of namespace Gob