mirror of https://github.com/OpenTTD/OpenTTD
(svn r12341) -Fix (r11224) [FS#1827]: GRM buffer for cargos was incorrect size.
parent
a6ee46a5a0
commit
f08cf32216
|
@ -120,7 +120,7 @@ static uint16 cargo_disallowed[TOTAL_NUM_ENGINES];
|
||||||
static uint32 _grm_engines[TOTAL_NUM_ENGINES];
|
static uint32 _grm_engines[TOTAL_NUM_ENGINES];
|
||||||
|
|
||||||
/* Contains the GRF ID of the owner of a cargo if it has been reserved */
|
/* Contains the GRF ID of the owner of a cargo if it has been reserved */
|
||||||
static uint32 _grm_cargos[NUM_CARGO];
|
static uint32 _grm_cargos[NUM_CARGO * 2];
|
||||||
|
|
||||||
/** DEBUG() function dedicated to newGRF debugging messages
|
/** DEBUG() function dedicated to newGRF debugging messages
|
||||||
* Function is essentialy the same as DEBUG(grf, severity, ...) with the
|
* Function is essentialy the same as DEBUG(grf, severity, ...) with the
|
||||||
|
|
Loading…
Reference in New Issue