Disable other annoying assertion using #ifdef _DEBUG && 0

This commit is contained in:
LegendaryGuard 2023-07-31 16:58:25 +02:00
parent e6b192d3d2
commit 8928511cb8

View file

@ -1206,9 +1206,9 @@ bool idClip::Motion( trace_t &results, const idVec3 &start, const idVec3 &end, c
trace_t translationalTrace, rotationalTrace, trace;
idRotation endRotation;
const idTraceModel *trm;
#ifdef _DEBUG && 0
assert( rotation.GetOrigin() == start );
#endif
if ( TestHugeTranslation( results, mdl, start, end, trmAxis ) ) {
return true;
}