fix deleting, renaming profiles

This commit is contained in:
Chris Danford
2003-11-01 19:36:52 +00:00
parent b1eb3ee78b
commit a5972a083d
11 changed files with 248 additions and 110 deletions
+4 -2
View File
@@ -183,8 +183,10 @@ void ScreenSystemLayer::RefreshCreditsMessages()
ASSERT(0);
}
if( PROFILEMAN->IsUsingProfile((PlayerNumber)p) )
sText += " " + PROFILEMAN->GetDisplayName((PlayerNumber)p);
Profile* pProfile = PROFILEMAN->GetProfile( (PlayerNumber)p );
if( pProfile )
sText += " " + pProfile->m_sName;
m_textCreditInfo[p].SetText( sText );
}
}