Removed a now obsolete FIXME (spotted by Fingolfin)

svn-id: r49932
This commit is contained in:
Filippos Karapetis 2010-06-17 14:06:12 +00:00
parent 36d92b4566
commit 4e7b98db0c

View File

@ -535,9 +535,6 @@ Node *SegManager::lookupNode(reg_t addr) {
return NULL; // Non-error null
if (getSegmentType(addr.segment) != SEG_TYPE_NODES) {
// FIXME: This occurs right at the beginning of SQ4, when walking north from the first screen. It doesn't
// seem to have any apparent ill-effects, though, so it's been changed to non-fatal, for now
//error("%s, L%d: Attempt to use non-node %04x:%04x as list node", __FILE__, __LINE__, PRINT_REG(addr));
warning("Attempt to use non-node %04x:%04x as list node", PRINT_REG(addr));
return NULL;
}