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
commit508fc292219a07717b2b8449fbb5a11e02ddef83 (patch)
tree1531a0dd531eb511b9d2669071bcd3747f09a65c /src/command.cpp
parent809bf8fb437885222404ec328ce44576e321a013 (diff)
downloadopenttd-508fc292219a07717b2b8449fbb5a11e02ddef83.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;