summaryrefslogtreecommitdiff
path: root/src/command.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-01-12 15:27:39 +0000
committerfrosch <frosch@openttd.org>2009-01-12 15:27:39 +0000
commit5dcb9e63e361d3212f1b4dbeb7f4253b23d45473 (patch)
tree1531a0dd531eb511b9d2669071bcd3747f09a65c /src/command.cpp
parent5477af10b546a0523ba4b2522182329d985746df (diff)
downloadopenttd-5dcb9e63e361d3212f1b4dbeb7f4253b23d45473.tar.xz
(svn r15014) -Codechange: Add a helper function to get the needed DC_xxx flags from the result of GetCommandFlags().
Diffstat (limited to 'src/command.cpp')
-rw-r--r--src/command.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/command.cpp b/src/command.cpp
index 2cc944676..6c1bc6cde 100644
--- a/src/command.cpp
+++ b/src/command.cpp
@@ -527,12 +527,10 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, uint32 cmd, CommandCallbac
CommandProc *proc = _command_proc_table[cmd_id].proc;
if (proc == NULL) return false;
- /* Flags get send to the DoCommand */
- uint32 flags = 0;
/* Command flags are used internally */
uint cmd_flags = GetCommandFlags(cmd);
- if (cmd_flags & CMD_NO_WATER) flags |= DC_NO_WATER;
- if (cmd_flags & CMD_AUTO) flags |= DC_AUTO;
+ /* Flags get send to the DoCommand */
+ uint32 flags = CommandFlagsToDCFlags(cmd_flags);
bool notest = (cmd_flags & CMD_NO_TEST) != 0;