Comment out printfs entirely

This commit is contained in:
Luke Street 2020-04-14 22:14:15 -04:00
parent eb89a17817
commit b020904e84
2 changed files with 7 additions and 7 deletions

View File

@ -78,10 +78,10 @@ void CStateMachineState::Update(CStateManager& mgr, CAi& ai, float delta) {
if (andPassed && state) { if (andPassed && state) {
x4_state->CallFunc(mgr, ai, EStateMsg::Deactivate, 0.f); x4_state->CallFunc(mgr, ai, EStateMsg::Deactivate, 0.f);
x4_state = state; x4_state = state;
#ifndef NDEBUG //#ifndef NDEBUG
fmt::print(FMT_STRING("{} {} {} - {} {}\n"), ai.GetUniqueId(), ai.GetEditorId(), ai.GetName(), // fmt::print(FMT_STRING("{} {} {} - {} {}\n"), ai.GetUniqueId(), ai.GetEditorId(), ai.GetName(),
state->xc_name, int(state - x0_machine->GetStateVector().data())); // state->xc_name, int(state - x0_machine->GetStateVector().data()));
#endif //#endif
x8_time = 0.f; x8_time = 0.f;
x18_24_codeTrigger = false; x18_24_codeTrigger = false;
xc_random = mgr.GetActiveRandom()->Float(); xc_random = mgr.GetActiveRandom()->Float();

View File

@ -69,9 +69,9 @@ void CVisorFlare::Update(float dt, const zeus::CVector3f& pos, const CActor* act
mgr.SetThermalColdScale2(mgr.GetThermalColdScale2() + x24_); mgr.SetThermalColdScale2(mgr.GetThermalColdScale2() + x24_);
} }
#ifndef NDEBUG //#ifndef NDEBUG
printf("%08X %f %f\n", act->GetEditorId().id, x24_, x28_); // printf("%08X %f %f\n", act->GetEditorId().id, x24_, x28_);
#endif //#endif
} }
} }