(svn r12466) -Codechange: move DestinationID to a more logical location.

This commit is contained in:
rubidium
2008-03-28 16:31:26 +00:00
parent 99d0c61ec0
commit b563a2e52c
3 changed files with 9 additions and 8 deletions

View File

@@ -25,6 +25,13 @@
#include "table/strings.h"
/* DestinationID must be at least as large as every these below, because it can
* be any of them
*/
assert_compile(sizeof(DestinationID) >= sizeof(DepotID));
assert_compile(sizeof(DestinationID) >= sizeof(WaypointID));
assert_compile(sizeof(DestinationID) >= sizeof(StationID));
TileIndex _backup_orders_tile;
BackuppedOrders _backup_orders_data;