File diff r4292:340dc5050536 → r4293:cbb984a32af5
aircraft_gui.c
Show inline comments
 
@@ -63,13 +63,13 @@ void DrawAircraftPurchaseInfo(int x, int
 
	/* Running cost */
 
	SetDParam(0, avi->running_cost * _price.aircraft_running >> 8);
 
	DrawString(x, y, STR_PURCHASE_INFO_RUNNINGCOST, 0);
 
	y += 10;
 

	
 
	/* Design date - Life length */
 
	SetDParam(0, BASE_YEAR + ymd.year);
 
	SetDParam(0, ymd.year);
 
	SetDParam(1, e->lifelength);
 
	DrawString(x, y, STR_PURCHASE_INFO_DESIGNED_LIFE, 0);
 
	y += 10;
 

	
 
	/* Reliability */
 
	SetDParam(0, e->reliability * 100 >> 16);