diff options
author | bjarni <bjarni@openttd.org> | 2006-08-26 22:28:40 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2006-08-26 22:28:40 +0000 |
commit | d576f799d5331cd22546cc555d210ab21e141fa1 (patch) | |
tree | 411f8a92fd3e71e7b66b7681f622b6b263916272 /order.h | |
parent | 5a763f32a5e513f9d98b3c08622207f9f0b74fce (diff) | |
download | openttd-d576f799d5331cd22546cc555d210ab21e141fa1.tar.xz |
(svn r6161) -Feature: List of vehicles with the same shared orders
the list is available in the orders window and looks like the list buttons from the station windows (small vehicle)
The button is disabled if the vehicle do not have any shared orders or it got shared orders, but an empty order list
based on a patch by nycom, thought it ended up getting heavily modified
Thanks to TrueLight for proofreading and suggestions
Diffstat (limited to 'order.h')
-rw-r--r-- | order.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -9,6 +9,10 @@ #include "macros.h" #include "pool.h" +enum { + INVALID_ORDER = 0xFFFF, +}; + /* Order types */ typedef enum OrderTypes { OT_NOTHING = 0, |