mirror of https://github.com/AxioDL/metaforce.git
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:
parent
1049a1a590
commit
47cfaf17bd
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue