mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r25497) -Fix (r25479): byte is not unit
This commit is contained in:
parent
3e03733fa6
commit
9e70d14a38
@ -1258,7 +1258,7 @@ void PrepareUnload(Vehicle *front_v)
|
||||
static uint GetLoadAmount(Vehicle *v)
|
||||
{
|
||||
const Engine *e = v->GetEngine();
|
||||
byte load_amount = e->info.load_amount;
|
||||
uint load_amount = e->info.load_amount;
|
||||
|
||||
/* The default loadamount for mail is 1/4 of the load amount for passengers */
|
||||
bool air_mail = v->type == VEH_AIRCRAFT && !Aircraft::From(v)->IsNormalAircraft();
|
||||
|
Loading…
Reference in New Issue
Block a user