- disabled assert in FAFhitscan.

There's maps out there which trigger this - so it should better be silenced, despite being a mapping error.
This commit is contained in:
Christoph Oelckers 2022-01-30 08:13:35 +01:00
parent 12b25df582
commit ce325e6453

View file

@ -162,7 +162,8 @@ FAFhitscan(int32_t x, int32_t y, int32_t z, sectortype* sect,
}
else
{
ASSERT(true == false);
//ASSERT(true == false); // some maps in SWC20 trigger this due to poor design.
return;
}
}
}