Skip to content

Commit

Permalink
- disabled assert in FAFhitscan.
Browse files Browse the repository at this point in the history
There's maps out there which trigger this - so it should better be silenced, despite being a mapping error.
  • Loading branch information
coelckers committed Jan 30, 2022
1 parent d500550 commit f1a239b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/games/sw/src/rooms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}
Expand Down

0 comments on commit f1a239b

Please sign in to comment.