From 4fb80b686424d86080bb28d2a4154df844e5e302 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 16 Oct 2002 18:29:04 +0000 Subject: [PATCH] (and actually use a period) --- stepmania/src/RageUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageUtil.cpp b/stepmania/src/RageUtil.cpp index bc4a9e0f65..61fe74595b 100644 --- a/stepmania/src/RageUtil.cpp +++ b/stepmania/src/RageUtil.cpp @@ -56,7 +56,7 @@ CString SecondsToTime( float fSecs ) * to differentiate between "mm:ss:ms". I'd much prefer reversing those, since * it makes much more sense to do "mm:ss.ms", but people would probably complain * about "arcade accuracy" ... */ - sReturn = ssprintf( "%02d:%02d:%02.0f", iMinsDisplay/60, iMinsDisplay%60, iSecsDisplay ); + sReturn = ssprintf( "%02d:%02d.%02.0f", iMinsDisplay/60, iMinsDisplay%60, iSecsDisplay ); } ASSERT( sReturn.GetLength() <= 8 ); return sReturn;