From 9415828900d9528475eebf92c0762642f3ad3b7f Mon Sep 17 00:00:00 2001 From: peter1138 Date: Fri, 28 Apr 2006 19:56:18 +0000 Subject: (svn r4610) - If a wagon has a capacity of 0 (zero), display it in the purchase list as N/A. --- train_gui.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'train_gui.c') diff --git a/train_gui.c b/train_gui.c index 9f9eacca6..119896bf0 100644 --- a/train_gui.c +++ b/train_gui.c @@ -109,10 +109,14 @@ void DrawTrainWagonPurchaseInfo(int x, int y, EngineID engine_number) DrawString(x, y, STR_PURCHASE_INFO_WEIGHT_CWEIGHT, 0); y += 10; - /* Cargo type + capacity */ - SetDParam(0, _cargoc.names_long[rvi->cargo_type]); - SetDParam(1, rvi->capacity); - SetDParam(2, refittable ? STR_9842_REFITTABLE : STR_EMPTY); + /* Cargo type + capacity, or N/A */ + SetDParam(0, STR_8838_N_A); + SetDParam(2, STR_EMPTY); + if (rvi->capacity != 0) { + SetDParam(0, _cargoc.names_long[rvi->cargo_type]); + SetDParam(1, rvi->capacity); + SetDParam(2, refittable ? STR_9842_REFITTABLE : STR_EMPTY); + } DrawString(x, y, STR_PURCHASE_INFO_CAPACITY, 0); y += 10; -- cgit v1.2.3-54-g00ecf