Applied patch [ 872338 ] Minor fixes to forty, fractal and poem demos

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25093 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-01-08 11:33:32 +00:00
parent 95f913a9d6
commit c4b7790106
3 changed files with 24 additions and 24 deletions

View File

@@ -91,15 +91,13 @@ void ScoreFile::GetPlayerList( wxArrayString &list )
if (length <= 0) return;
wxString player;
long index, i = 0;
long index;
if (m_config->GetFirstGroup(player, index))
{
list.Add( player );
i++;
while (m_config->GetNextGroup(player, index))
{
list.Add( player );
i++;
}
}
}