1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-21 13:39:09 +00:00

(svn r5915) -Cleanup: some variables were named *_date while they were only holding years; rename these variables to match this.

This commit is contained in:
rubidium
2006-08-15 14:52:17 +00:00
parent d447f025e9
commit 8aa76f306d
41 changed files with 105 additions and 105 deletions

2
misc.c
View File

@@ -124,7 +124,7 @@ void InitializeGame(int mode, uint size_x, uint size_y)
_cur_tileloop_tile = 0;
if ((mode & IG_DATE_RESET) == IG_DATE_RESET) {
uint starting = ConvertIntDate(_patches.starting_date);
uint starting = ConvertIntDate(_patches.starting_year);
if (starting == (uint)-1) starting = 10958;
SetDate(starting);
}