This commit is contained in:
Steve Checkoway
2006-10-16 07:18:03 +00:00
parent 793c616f38
commit 8d02fa3eb3
2 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -190,7 +190,7 @@ void ScreenNameEntry::Init()
for( int iCol=0; iCol<pStyle->m_iColsPerPlayer; iCol++ )
{
if(CurrentStringIndex == MAX_RANKING_NAME_LENGTH)
if( CurrentStringIndex == MAX_RANKING_NAME_LENGTH )
continue; /* We have enough columns. */
/* Find out if this column is associated with the START menu button. */
@@ -306,7 +306,7 @@ void ScreenNameEntry::DrawPrimitives()
char c = NAME_CHARS[iCharIndex];
for( int t=0; t<pStyle->m_iColsPerPlayer; t++ )
{
if(m_ColToStringIndex[p][t] == -1)
if( m_ColToStringIndex[p][t] == -1 )
continue;
m_textScrollingChars[p][t].SetText( ssprintf("%c",c) ); // why doens't CStdStr have a contructor that takes a char?