Remove debugging print

This commit is contained in:
fickleheart 2019-02-18 23:39:08 -06:00
parent caf7888eed
commit 838ed005d2
1 changed files with 0 additions and 5 deletions

View File

@ -1130,11 +1130,6 @@ void K_KartBouncing(mobj_t *mobj1, mobj_t *mobj2, boolean bounce, boolean solid)
distx = FixedMul(mobj1->radius+mobj2->radius, nx);
disty = FixedMul(mobj1->radius+mobj2->radius, ny);
CONS_Printf("dist %f %f %d %d %d %d\n",
FIXED_TO_FLOAT(P_AproxDistance(distx, disty)),
FIXED_TO_FLOAT(P_AproxDistance(momdifx, momdify)),
mobj1->momx, mobj1->momy, mobj2->momx, mobj2->momy);
if (momdifx == 0 && momdify == 0)
{
// If there's no momentum difference, they're moving at exactly the same rate. Pretend they moved into each other.