CScriptActor: Remove unused printf code

Given it's not actively used or tied into the logging system, we can get
rid of this to prevent it from ever bitrotting.
This commit is contained in:
Lioncash 2020-05-20 13:59:18 -04:00
parent 1049a1a590
commit 47cfaf17bd
1 changed files with 0 additions and 3 deletions

View File

@ -110,9 +110,6 @@ void CScriptActor::Think(float dt, CStateManager& mgr) {
MoveToOR(deltas.x0_posDelta, dt); MoveToOR(deltas.x0_posDelta, dt);
} }
//if (TCastToPtr<MP1::CActorContraption>(this))
//printf("DEL %f\n", zeus::radToDeg(zeus::CEulerAngles(deltas.xc_rotDelta).z()));
//printf("DEL %f %f %f %f\n", float(deltas.xc_rotDelta[0]), float(deltas.xc_rotDelta[1]), float(deltas.xc_rotDelta[2]), float(deltas.xc_rotDelta[3]));
RotateToOR(deltas.xc_rotDelta, dt); RotateToOR(deltas.xc_rotDelta, dt);
} }