code cleanup: float formatting was confusing in some cases - eg: (0.,0.,0.)

This commit is contained in:
Campbell Barton
2012-04-11 08:15:13 +00:00
parent 9ae0523921
commit b4a0152e76
30 changed files with 58 additions and 58 deletions

View File

@@ -46,7 +46,7 @@ double GPG_System::GetTimeInSeconds()
{
GHOST_TInt64 millis = (GHOST_TInt64)m_system->getMilliSeconds();
double time = (double)millis;
time /= 1000.;
time /= 1000.0f;
return time;
}