Yet more theme cleanup. This should be the job of the artists!

This commit is contained in:
Chris Danford
2002-09-24 02:55:32 +00:00
parent 899e226f38
commit 23df7ec564
23 changed files with 392 additions and 53 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ CString SecondsToTime( float fSecs )
{
int iMinsDisplay = (int)fSecs/60;
int iSecsDisplay = (int)fSecs - iMinsDisplay*60;
int iLeftoverDisplay = int( (fSecs - iMinsDisplay*60 - iSecsDisplay) * 100 );
return ssprintf( "%02d:%02d:%02d", iMinsDisplay, iSecsDisplay, iLeftoverDisplay );
float fLeftoverDisplay = (fSecs - iMinsDisplay*60 - iSecsDisplay) * 100;
return ssprintf( "%02d:%02d:%02f", iMinsDisplay, iSecsDisplay, fLeftoverDisplay );
}
//-----------------------------------------------------------------------------