simplify mine scoring

add separate dance point weights for mines
This commit is contained in:
Chris Danford
2004-01-02 08:43:14 +00:00
parent 8c6249aa8c
commit 40b2ecfee5
21 changed files with 125 additions and 133 deletions
+3 -4
View File
@@ -964,10 +964,9 @@ CString Capitalize( const CString &s )
{
if( s.GetLength()==0 )
return "";
CString s1 = s.Left(1);
s1.MakeUpper();
CString s2 = s.Right( s.GetLength()-1 );
return s1+s2;
CString s2 = s;
s2[0] = toupper( s2[0] );
return s2;
}
char char_traits_char_nocase::uptab[256] =