summaryrefslogtreecommitdiff
path: root/engine.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-17 20:22:35 +0000
committerrubidium <rubidium@openttd.org>2006-08-17 20:22:35 +0000
commit894d9fc12f912ba280dc4325324f5188e99fb3fb (patch)
tree0e09fbecef792005a3c390649f7cf774c8c43325 /engine.c
parentf4bddd0b474bffb7d68d3df2c83c9b3f09dd71d8 (diff)
downloadopenttd-894d9fc12f912ba280dc4325324f5188e99fb3fb.tar.xz
(svn r5934) -Cleanup: forgot some conversions to Year and to Date
-Cleanup: use _cur_year instead of _date for some (year based) comparisons -Cleanup: remove a magic number in favour of another (less) magic number
Diffstat (limited to 'engine.c')
-rw-r--r--engine.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/engine.c b/engine.c
index 1f96f610f..43e515e7d 100644
--- a/engine.c
+++ b/engine.c
@@ -88,11 +88,10 @@ static void SetupEngineNames(void)
static void AdjustAvailAircraft(void)
{
- uint16 date = _date;
byte avail = 0;
- if (date >= 12784) avail |= 2; // big airport
- if (date < 14610 || _patches.always_small_airport) avail |= 1; // small airport
- if (date >= 15706) avail |= 4; // enable heliport
+ if (_cur_year >= 1955) avail |= 2; // big airport
+ if (_cur_year < 1960 || _patches.always_small_airport) avail |= 1; // small airport
+ if (_cur_year >= 1963) avail |= 4; // enable heliport
if (avail != _avail_aircraft) {
_avail_aircraft = avail;
@@ -151,7 +150,7 @@ void StartupEngines(void)
// base intro date is before 1922 then the random number of days is not
// added.
r = Random();
- e->intro_date = ei->base_intro <= 729 ? ei->base_intro : GB(r, 0, 9) + ei->base_intro;
+ e->intro_date = ei->base_intro <= ConvertYMDToDate(1922, 0, 1) ? ei->base_intro : (Date)GB(r, 0, 9) + ei->base_intro;
if (e->intro_date <= _date) {
e->age = (_date - e->intro_date) >> 5;
e->player_avail = (byte)-1;