Cleanup: trailing space in source/gameengine/

This commit is contained in:
2018-06-17 17:01:43 +02:00
parent 5513da65b2
commit 4be752a93c
353 changed files with 3730 additions and 3730 deletions

View File

@@ -75,7 +75,7 @@ void SCA_TimeEventManager::NextFrame(double curtime, double fixedtime)
if (m_timevalues.size() > 0 && fixedtime > 0.0)
{
CFloatValue* floatval = new CFloatValue(curtime);
// update sensors, but ... need deltatime !
for (vector<CValue*>::iterator it = m_timevalues.begin();
!(it == m_timevalues.end()); ++it)
@@ -84,7 +84,7 @@ void SCA_TimeEventManager::NextFrame(double curtime, double fixedtime)
floatval->SetFloat(newtime);
(*it)->SetValue(floatval);
}
floatval->Release();
}
}