Added FIXME about the broken implementation of opcode 0x9A (o2_wasZoneChecked).

svn-id: r32789
This commit is contained in:
Kari Salminen 2008-06-25 18:51:44 +00:00
parent d5d09208b4
commit dee147eebf

View File

@ -654,6 +654,7 @@ int FWScript::o2_loadBg() {
*/
int FWScript::o2_wasZoneChecked() {
byte param = getNextByte();
// FIXME: Using a wrong table here, it's not zoneData we want, but something else (zoneQuery)
_compare = (param < 16 && zoneData[param]);
debugC(5, kCineDebugScript, "Line: %d: o2_wasZoneChecked(%d)", _line, param);
return 0;