Merge pull request #924 from Gymnasiast/patch-2

Fix negative ride ages
This commit is contained in:
Ted John 2015-03-18 18:23:32 +00:00
commit 1f718cda07
1 changed files with 2 additions and 1 deletions

View File

@ -5880,7 +5880,8 @@ static void window_ride_customer_paint()
y += 2;
// Age
age = (RCT2_GLOBAL(RCT2_ADDRESS_CURRENT_MONTH_YEAR, uint16) - ride->build_date) / 8;
//If the ride has a build date that is in the future, show it as built this year.
age = max((RCT2_GLOBAL(RCT2_ADDRESS_CURRENT_MONTH_YEAR, uint16) - ride->build_date) / 8, 0);
stringId = age == 0 ?
STR_BUILT_THIS_YEAR :
age == 1 ?