From e87e065e41d324ae29e0c1762f36193a69fb7374 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 16 Aug 2006 11:39:55 +0000 Subject: (svn r5926) -Codechange: make _cur_year contain the full year, instead of the offset since 1920 -Codechange: store all year related variables that are _not_ stored in a savegame/transported over the network in the same format as _cur_year --- train_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'train_gui.c') diff --git a/train_gui.c b/train_gui.c index cd238de5e..cc0128aa1 100644 --- a/train_gui.c +++ b/train_gui.c @@ -73,7 +73,7 @@ void DrawTrainEnginePurchaseInfo(int x, int y, EngineID engine_number) 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; -- cgit v1.2.3-54-g00ecf