small fixes

git-svn-id: https://clonekeenplus.svn.sourceforge.net/svnroot/clonekeenplus/cgenius/trunk@123 4df4b0f3-56ce-47cb-b001-ed939b7d65a6
This commit is contained in:
albertzeyer
2009-07-23 21:32:48 +00:00
parent f78dffb5e2
commit 52ffee41eb
2 changed files with 3 additions and 4 deletions

View File

@@ -147,8 +147,7 @@ extern char fade_black;
bool loadStartMenu(stCloneKeenPlus *pCKP)
{
CDialog *GamesMenu;
int i;
bool ret;
bool ret = true;
fade.mode = FADE_GO;
fade.rate = FADE_NORM;
@@ -163,7 +162,7 @@ bool loadStartMenu(stCloneKeenPlus *pCKP)
GamesMenu->setDimensions(2,2,36,15);
// Show me the games you detected!
for( i=0 ; i < pCKP->numGames ; i++ )
for( int i=0 ; i < pCKP->numGames ; i++ )
{
GamesMenu->addOptionText(pCKP->GameData[i].Name);
}