summaryrefslogtreecommitdiff
path: root/players.c
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2005-01-15 10:04:04 +0000
committerdarkvater <darkvater@openttd.org>2005-01-15 10:04:04 +0000
commit0c01db5255498826065fd6c0b24160d25a4c019c (patch)
tree8cae0e0cfc867c9347984f966c8a729c734710a7 /players.c
parent3f74c9884e893de018b7d20851e5272c096ce8ce (diff)
downloadopenttd-0c01db5255498826065fd6c0b24160d25a4c019c.tar.xz
(svn r1522) -Fix: warning players.c; forgot return type. Damn, makefile is too strict ;) (Thx Tron)
Diffstat (limited to 'players.c')
-rw-r--r--players.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/players.c b/players.c
index 26ee40952..127d81a2f 100644
--- a/players.c
+++ b/players.c
@@ -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)];