mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r1522) -Fix: warning players.c; forgot return type. Damn, makefile is too strict ;) (Thx Tron)
This commit is contained in:
parent
02ed8410a2
commit
559317f9d0
@ -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)];
|
||||||
|
Loading…
Reference in New Issue
Block a user