diff options
author | darkvater <darkvater@openttd.org> | 2005-01-15 10:04:04 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2005-01-15 10:04:04 +0000 |
commit | 0c01db5255498826065fd6c0b24160d25a4c019c (patch) | |
tree | 8cae0e0cfc867c9347984f966c8a729c734710a7 | |
parent | 3f74c9884e893de018b7d20851e5272c096ce8ce (diff) | |
download | openttd-0c01db5255498826065fd6c0b24160d25a4c019c.tar.xz |
(svn r1522) -Fix: warning players.c; forgot return type. Damn, makefile is too strict ;) (Thx Tron)
-rw-r--r-- | players.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -746,7 +746,7 @@ StringID EndGameGetPerformanceTitleFromValue(uint value) } /* 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_last = &cht[sizeof(_cheats) / sizeof(Cheat)]; |