diff options
| author | sylvaintv | 2012-06-17 03:10:17 +0200 | 
|---|---|---|
| committer | Eugene Sandulenko | 2018-03-28 17:36:57 +0200 | 
| commit | f03571ccb1bd3b61eca01ef06680e8315179826b (patch) | |
| tree | b3534c5a9654a277e4bd16d836cf786c70dda622 | |
| parent | 479eaaaa9e354ff7f84599ea8ff44250e6bc4feb (diff) | |
| download | scummvm-rg350-f03571ccb1bd3b61eca01ef06680e8315179826b.tar.gz scummvm-rg350-f03571ccb1bd3b61eca01ef06680e8315179826b.tar.bz2 scummvm-rg350-f03571ccb1bd3b61eca01ef06680e8315179826b.zip  | |
LILLIPUT: Fix bad opcode definition for display aerial map
| -rw-r--r-- | engines/lilliput/script.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lilliput/script.cpp b/engines/lilliput/script.cpp index 58e96a06bc..f8c3dc0b15 100644 --- a/engines/lilliput/script.cpp +++ b/engines/lilliput/script.cpp @@ -689,7 +689,7 @@ static const OpCode opCodes2[] = {  /* 0x4c */	{ "OC_setByte14837", 0, kNone, kNone, kNone, kNone, kNone },   /* 0x4d */	{ "OC_waitForEvent", 0, kNone, kNone, kNone, kNone, kNone },   /* 0x4e */	{ "OC_disableInterfaceHotspot", 2, kImmediateValue, kImmediateValue, kNone, kNone, kNone },  // TODO -/* 0x4f */	{ "OC_loadFile_AERIAL_GFX", 1, kImmediateValue, kNone, kNone, kNone, kNone },  +/* 0x4f */	{ "OC_loadFile_AERIAL_GFX", 1, kNone, kNone, kNone, kNone, kNone },   /* 0x50 */	{ "OC_sub17E22_speech1IfSoundOff", 1, kImmediateValue, kNone, kNone, kNone, kNone },   /* 0x51 */	{ "OC_sub1844A", 2, kGetValue1, kImmediateValue, kNone, kNone, kNone },   /* 0x52 */	{ "OC_displayNumericCharacterVariable", 5, kGetValue1, kImmediateValue, kImmediateValue, kImmediateValue, kImmediateValue },  @@ -3109,7 +3109,7 @@ void LilliputScript::OC_loadFile_AERIAL_GFX() {  //	Unused variable  //	int var1 = _currScript->readUint16LE() & 0xFF;  //	byte _byte15EAD = var1; -	_currScript->readUint16LE(); +//	_currScript->readUint16LE();   // di is restored afterwards so do nothing  //  	_vm->_refreshScreenFlag = true;  | 
