option icons working, new font format, more theme metrics cleanup

This commit is contained in:
Chris Danford
2002-09-03 22:31:06 +00:00
parent 106531a0f8
commit 7ab487072f
48 changed files with 350 additions and 286 deletions
+3 -3
View File
@@ -20,9 +20,9 @@ CString PlayerOptions::GetString()
if( m_fArrowScrollSpeed != 1 )
{
CString s = ssprintf( "%2.2f", m_fArrowScrollSpeed );
if( s[s.GetLength()-1] == '0' )
s.Delete(s.GetLength()-1);
CString s = ssprintf( "%2.1f", m_fArrowScrollSpeed );
if( s.Right(1) == '0' )
s.Delete(s.GetLength()-2, 2); // delete last 2 chars
sReturn += s + "X, ";
}