Remove the second biggest hack I've ever seen

svn-id: r6423
This commit is contained in:
James Brown 2003-01-12 10:33:30 +00:00
parent bd9f9405cd
commit 37648803ae

View File

@ -124,15 +124,6 @@ int Scumm::getObjectIndex(int object)
if (_objs[i].obj_nr == object)
return i;
}
// FIXME: Major HACK. This is probably the worst biggest
// hack in the whole engine. It's that bad.
// (Workaround flobject 188/189 not loaded bug)
/*if (_gameId == GID_CMI && ((object == 188 || object == 189))) {
warning("FIXME MAJOR: Hacking load of FlObject %d\n", object);
loadFlObject(object, 3);
return getObjectIndex(object);
}*/
return -1;
}
}