changeset 3651:2223302eff46 draft

(svn r4562) - NewGRF: Add additional vehicle text to train engine and wagon purchase information. Other vehicle types to come.
author peter1138 <peter1138@openttd.org>
date Sun, 23 Apr 2006 22:35:37 +0000
parents dfb952f78e05
children c15e9052336d
files train_gui.c
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/train_gui.c
+++ b/train_gui.c
@@ -82,6 +82,10 @@
 	SetDParam(0, e->reliability * 100 >> 16);
 	DrawString(x,y, STR_PURCHASE_INFO_RELIABILITY, 0);
 	y += 10;
+
+	/* Additional text from NewGRF */
+	// XXX 227 will become a calculated width...
+	y += ShowAdditionalText(x, y, 227, engine_number);
 }
 
 /**
@@ -118,6 +122,9 @@
 		DrawString(x,y, STR_PURCHASE_INFO_SPEED, 0);
 		y += 10;
 	}
+
+	/* Additional text from NewGRF */
+	y += ShowAdditionalText(x, y, 227, engine_number);
 }
 
 void CcBuildWagon(bool success, TileIndex tile, uint32 p1, uint32 p2)