diff options
Diffstat (limited to 'src/economy_base.h')
-rw-r--r-- | src/economy_base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/economy_base.h b/src/economy_base.h index 5d7124c1b..edad76ed2 100644 --- a/src/economy_base.h +++ b/src/economy_base.h @@ -15,8 +15,8 @@ #include "cargopacket.h" #include "company_type.h" -/** Type of pool to store cargo payments in. */ -typedef Pool<CargoPayment, CargoPaymentID, 512, 64000> CargoPaymentPool; +/** Type of pool to store cargo payments in; little over 1 million. */ +typedef Pool<CargoPayment, CargoPaymentID, 512, 0xFF000> CargoPaymentPool; /** The actual pool to store cargo payments in. */ extern CargoPaymentPool _cargo_payment_pool; |