(svn r1522) -Fix: warning players.c; forgot return type. Damn, makefile is too strict ;) (Thx Tron)

This commit is contained in:
darkvater 2005-01-15 10:04:04 +00:00
parent 02ed8410a2
commit 559317f9d0
1 changed files with 1 additions and 1 deletions

View File

@ -746,7 +746,7 @@ StringID EndGameGetPerformanceTitleFromValue(uint value)
} }
/* Return true if any cheat has been used, false otherwise */ /* Return true if any cheat has been used, false otherwise */
static CheatHasBeenUsed(void) static bool CheatHasBeenUsed(void)
{ {
const Cheat* cht = (Cheat*) &_cheats; const Cheat* cht = (Cheat*) &_cheats;
const Cheat* cht_last = &cht[sizeof(_cheats) / sizeof(Cheat)]; const Cheat* cht_last = &cht[sizeof(_cheats) / sizeof(Cheat)];