(svn r13437) -Feature[newGRF]: Add long format introduction and maximum construction year for house.

This commit is contained in:
belugas
2008-06-10 00:42:19 +00:00
parent bf8afb4c38
commit 54e7a3b196
2 changed files with 12 additions and 4 deletions

View File

@@ -1538,6 +1538,14 @@ static bool TownHouseChangeInfo(uint hid, int numinfo, int prop, byte **bufp, in
ret = true;
} break;
case 0x21: // long introduction year
housespec->min_year = grf_load_word(&buf);
break;
case 0x22: // long maximum year
housespec->max_year = grf_load_word(&buf);
break;
default:
ret = true;
break;