mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 14:18:37 +00:00
GOB: Add o7_oemToANSI
I don't think that we'll need that :P svn-id: r55522
This commit is contained in:
parent
2ce333bf16
commit
e5304457b4
@ -610,6 +610,8 @@ protected:
|
||||
void o7_draw0xC5();
|
||||
void o7_draw0xC6();
|
||||
|
||||
void o7_oemToANSI(OpGobParams ¶ms);
|
||||
|
||||
private:
|
||||
void storeValue(uint16 index, uint16 type, uint32 value);
|
||||
void storeValue(uint32 value);
|
||||
|
@ -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 ¶ms) {
|
||||
_vm->_game->_script->skip(2);
|
||||
}
|
||||
|
||||
} // End of namespace Gob
|
||||
|
Loading…
Reference in New Issue
Block a user