summaryrefslogtreecommitdiff
path: root/order.h
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-26 17:16:51 +0000
committertruelight <truelight@openttd.org>2006-08-26 17:16:51 +0000
commit43f53ca4fd3c0d73cc8cd0ae6a86dd30a2c5e718 (patch)
tree6f8b3fc024528fc088a38079d9fcf7fc6dd59e45 /order.h
parentb17d389667891df6a30cd29acae5405eb27d895e (diff)
downloadopenttd-43f53ca4fd3c0d73cc8cd0ae6a86dd30a2c5e718.tar.xz
(svn r6145) -Codechange: added OrderID to indicate Order indexes out of the pool
Diffstat (limited to 'order.h')
-rw-r--r--order.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/order.h b/order.h
index b76800b57..05107b25e 100644
--- a/order.h
+++ b/order.h
@@ -82,7 +82,7 @@ typedef struct Order {
struct Order *next; ///< Pointer to next order. If NULL, end of list
- uint16 index; ///< Index of the order, is not saved or anything, just for reference
+ OrderID index; ///< Index of the order, is not saved or anything, just for reference
} Order;
#define MAX_BACKUP_ORDER_COUNT 40
@@ -103,7 +103,7 @@ extern MemoryPool _order_pool;
/**
* Get the pointer to the order with index 'index'
*/
-static inline Order *GetOrder(uint index)
+static inline Order *GetOrder(OrderID index)
{
return (Order*)GetItemFromPool(&_order_pool, index);
}