summaryrefslogtreecommitdiff
path: root/roadveh_cmd.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-16 11:39:55 +0000
committerrubidium <rubidium@openttd.org>2006-08-16 11:39:55 +0000
commite87e065e41d324ae29e0c1762f36193a69fb7374 (patch)
tree90102c4cf1f03e52dfe00d3cd1315b6cd9e6b399 /roadveh_cmd.c
parentca226df7398391adb3f4eda21aeaf593df05bdba (diff)
downloadopenttd-e87e065e41d324ae29e0c1762f36193a69fb7374.tar.xz
(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
Diffstat (limited to 'roadveh_cmd.c')
-rw-r--r--roadveh_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/roadveh_cmd.c b/roadveh_cmd.c
index be1c091ac..8adc1a2f5 100644
--- a/roadveh_cmd.c
+++ b/roadveh_cmd.c
@@ -184,7 +184,7 @@ int32 CmdBuildRoadVeh(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
v->service_interval = _patches.servint_roadveh;
v->date_of_last_service = _date;
- v->build_year = _cur_year;
+ v->build_year = _cur_year - BASE_YEAR;
v->type = VEH_Road;
v->cur_image = 0xC15;