2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-03 10:35:51 +00:00

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

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);
} }