From bc22ee6df57fa7c006f4968e1535474082fc3827 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Fri, 25 Jun 2010 13:48:13 +0000 Subject: [PATCH] Fixed rouding error in time handling, e.g. 0:0:996 was displayed as 0:0:100 and not as 0:1:0. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5559 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/utils/string_utils.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/utils/string_utils.cpp b/src/utils/string_utils.cpp index b9225439e..2bc3f2036 100644 --- a/src/utils/string_utils.cpp +++ b/src/utils/string_utils.cpp @@ -360,9 +360,10 @@ namespace StringUtils */ std::string timeToString(float time) { - int min = (int) floor ( time / 60.0 ) ; - int sec = (int) floor ( time - (double) ( 60 * min ) ) ; - int hundredths = (int) floor ( 100.0f * (time - (double)(sec + 60* min))+0.5f); + int int_time = time*100.0f+0.5f; + int min = int_time / 6000; + int sec = (int_time-min*6000)/100; + int hundredths = (int_time - min*6000-sec*100); // The proper c++ way would be: // std::ostringstream s; // s<