mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 12:09:15 +00:00
GOB: Add o7_gob0x201
svn-id: r55737
This commit is contained in:
parent
832cfddf34
commit
c1967c1a0a
@ -623,6 +623,7 @@ protected:
|
||||
void o7_getDBString();
|
||||
|
||||
void o7_oemToANSI(OpGobParams ¶ms);
|
||||
void o7_gob0x201(OpGobParams ¶ms);
|
||||
|
||||
private:
|
||||
INIConfig _inis;
|
||||
|
@ -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 ¶ms) {
|
||||
uint16 varIndex = _vm->_game->_script->readUint16();
|
||||
|
||||
WRITE_VAR(varIndex, 1);
|
||||
}
|
||||
|
||||
} // End of namespace Gob
|
||||
|
Loading…
Reference in New Issue
Block a user