Change: Increase maximum number of orders from 64000 to ~16.7m. (#7220)

This commit is contained in:
PeterN
2019-02-18 07:37:25 +00:00
committed by GitHub
parent ef7e47a53a
commit 84961034e4
2 changed files with 3 additions and 3 deletions

View File

@@ -21,7 +21,7 @@
#include "vehicle_type.h"
#include "date_type.h"
typedef Pool<Order, OrderID, 256, 64000> OrderPool;
typedef Pool<Order, OrderID, 256, 0xFF0000> OrderPool;
typedef Pool<OrderList, OrderListID, 128, 64000> OrderListPool;
extern OrderPool _order_pool;
extern OrderListPool _orderlist_pool;