summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2005-05-07 10:26:12 +0000
committerDarkvater <Darkvater@openttd.org>2005-05-07 10:26:12 +0000
commit419af5cecebec58262323c3a870bdaac61da2e66 (patch)
tree41092e6384d7ca2d43fd19eb44c85504508903a0 /command.h
parentaf427810428e65e9493499931f270c9a1bb3bc74 (diff)
downloadopenttd-419af5cecebec58262323c3a870bdaac61da2e66.tar.xz
(svn r2279) - Fix: Check the parameters of the first 10 Commands. While there also add proper comments for the functions and fix up CmdFailed()
Diffstat (limited to 'command.h')
-rw-r--r--command.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/command.h b/command.h
index 49c13dc2e..c6c514938 100644
--- a/command.h
+++ b/command.h
@@ -191,4 +191,6 @@ int32 DoCommandByTile(TileIndex tile, uint32 p1, uint32 p2, uint32 flags, uint p
bool IsValidCommand(uint cmd);
int32 GetAvailableMoneyForCommand(void);
+/* Validate functions for rail building */
+static inline bool ValParamRailtype(uint32 rail) { return (rail > GetPlayer(_current_player)->max_railtype) ? false : true;}
#endif /* COMMAND_H */