summaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-06-21 14:32:27 +0000
committerrubidium <rubidium@openttd.org>2007-06-21 14:32:27 +0000
commit0d8e82b7d742b54216bf6bc8a1d3b4eafe8124ab (patch)
tree4d9bfa9de886f7ff167c4fa02326f5cd302e8cce /src/command.h
parentc755fa43d08e5adaad87745769369ec8e5e59915 (diff)
downloadopenttd-0d8e82b7d742b54216bf6bc8a1d3b4eafe8124ab.tar.xz
(svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch.
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.h b/src/command.h
index 6f2014765..c19027a31 100644
--- a/src/command.h
+++ b/src/command.h
@@ -212,6 +212,6 @@ extern const char* _cmd_text; ///< Text, which gets sent with a command
bool IsValidCommand(uint cmd);
byte GetCommandFlags(uint cmd);
-int32 GetAvailableMoneyForCommand();
+Money GetAvailableMoneyForCommand();
#endif /* COMMAND_H */