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 | 559317f9d0ed7d32cff54939a3296922e3fae066 (patch) | |
tree | 8cae0e0cfc867c9347984f966c8a729c734710a7 | |
parent | 02ed8410a24c1bb1619f0e13a97bd78265355cbd (diff) | |
download | openttd-559317f9d0ed7d32cff54939a3296922e3fae066.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)]; |