From 28a08437075be6495df383ca854f6026965a8b8e Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 20 Aug 2006 18:40:57 +0000 Subject: (svn r5999) -Feature: change the original date format to a 32 bits format based at the year 0. The game date subsystem now allows someone to start in the year 0 and continue up to the year 5 000 000. However, you currently cannot build anything before 1920 as there is no newgrf support for dates before 1920 or after 2090 yet. --- station_cmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'station_cmd.c') diff --git a/station_cmd.c b/station_cmd.c index 64503fb7f..71eec64e2 100644 --- a/station_cmd.c +++ b/station_cmd.c @@ -3003,7 +3003,8 @@ static const SaveLoad _station_desc[] = { // Was custom station class and id SLE_CONDNULL(2, 3, 25), - SLE_CONDVAR(Station,build_date, SLE_UINT16, 3, SL_MAX_VERSION), + SLE_CONDVAR(Station,build_date, SLE_FILE_U16 | SLE_VAR_I32, 3, 30), + SLE_CONDVAR(Station,build_date, SLE_INT32, 31, SL_MAX_VERSION), SLE_CONDREF(Station,bus_stops, REF_ROADSTOPS, 6, SL_MAX_VERSION), SLE_CONDREF(Station,truck_stops, REF_ROADSTOPS, 6, SL_MAX_VERSION), -- cgit v1.2.3-54-g00ecf