Changeset - r20481:1c0e81c9e67e
[Not reviewed]
master
0 1 0
frosch - 11 years ago 2013-06-28 19:20:45
frosch@openttd.org
(svn r25497) -Fix (r25479): byte is not unit
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/economy.cpp
Show inline comments
 
@@ -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();
0 comments (0 inline, 0 general)