(svn r6002) -Cleanup: remove the now redundant BASE_YEAR constant.

This commit is contained in:
rubidium
2006-08-20 19:05:28 +00:00
parent 9e755051a1
commit 893d4ba9d4
15 changed files with 21 additions and 24 deletions

View File

@@ -1209,7 +1209,7 @@ void NetworkPopulateCompanyInfo(void)
GetString(_network_player_info[p->index].company_name, STR_JUST_STRING);
// Check the income
if (_cur_year - 1 == BASE_YEAR + p->inaugurated_year) {
if (_cur_year - 1 == p->inaugurated_year) {
// The player is here just 1 year, so display [2], else display[1]
for (i = 0; i < 13; i++) {
_network_player_info[p->index].income -= p->yearly_expenses[2][i];