(svn r12134) -Change: count the number of ticks a vehicle was running this day to calculate running cost

-Fix [FS#1739]: vehicle profit is now counted with 8bit fract, so it is now shown properly in the vehicle details window
This commit is contained in:
smatz
2008-02-13 19:24:40 +00:00
parent 833a00def9
commit fe48d0be21
14 changed files with 75 additions and 49 deletions

View File

@@ -2419,6 +2419,16 @@ bool AfterLoadGame()
}
}
if (CheckSavegameVersion(88)) {
/* Profits are now with 8 bit fract */
Vehicle *v;
FOR_ALL_VEHICLES(v) {
v->profit_this_year <<= 8;
v->profit_last_year <<= 8;
v->running_ticks = 0;
}
}
return InitializeWindowsAndCaches();
}