summaryrefslogtreecommitdiff
path: root/network.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-15 14:52:17 +0000
committerrubidium <rubidium@openttd.org>2006-08-15 14:52:17 +0000
commit8aa76f306db00b81f14b53a736b6e30099258841 (patch)
tree4d695e9efdc4542d90feba482d6d00bd948be0d3 /network.c
parentd447f025e9c44a347e9134a5ecda92fbbe14bb75 (diff)
downloadopenttd-8aa76f306db00b81f14b53a736b6e30099258841.tar.xz
(svn r5915) -Cleanup: some variables were named *_date while they were only holding years; rename these variables to match this.
Diffstat (limited to 'network.c')
-rw-r--r--network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/network.c b/network.c
index 31743ebb6..6426686c4 100644
--- a/network.c
+++ b/network.c
@@ -983,7 +983,7 @@ static void NetworkInitGameInfo(void)
_network_game_info.spectators_on = 0;
_network_game_info.game_date = _date;
- _network_game_info.start_date = ConvertIntDate(_patches.starting_date);
+ _network_game_info.start_date = ConvertIntDate(_patches.starting_year);
_network_game_info.map_width = MapSizeX();
_network_game_info.map_height = MapSizeY();
_network_game_info.map_set = _opt.landscape;