mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- 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:
parent
12b25df582
commit
ce325e6453
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue