summaryrefslogtreecommitdiff
path: root/src/vehicle_base.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-09 21:20:05 +0000
committerrubidium <rubidium@openttd.org>2009-02-09 21:20:05 +0000
commit5c8cf856136922426be87d778d525e024813648c (patch)
treea4f2317ed234736c522ee05672396684eadbc141 /src/vehicle_base.h
parent545804b67a6b945727695afe1438f1a11b71c610 (diff)
downloadopenttd-5c8cf856136922426be87d778d525e024813648c.tar.xz
(svn r15434) -Codechange: bit of type safety for the DC_xxx flags.
Diffstat (limited to 'src/vehicle_base.h')
-rw-r--r--src/vehicle_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle_base.h b/src/vehicle_base.h
index fa2b1da85..a1ff402da 100644
--- a/src/vehicle_base.h
+++ b/src/vehicle_base.h
@@ -594,7 +594,7 @@ public:
* @param command the command to execute.
* @return the cost of the depot action.
*/
- CommandCost SendToDepot(uint32 flags, DepotCommand command);
+ CommandCost SendToDepot(DoCommandFlag flags, DepotCommand command);
};
/**