From a190606f2e7567898b71c663989cd47bed7eab91 Mon Sep 17 00:00:00 2001 From: smatz Date: Wed, 20 Feb 2008 17:06:58 +0000 Subject: (svn r12197) -Fix [FS#1788](r12134): show correct last year profit when the train had negative income -Codechange: use GetDisplayProfitThisYear() to convert vehicle profit to readable form --- src/ai/default/default.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ai/default') diff --git a/src/ai/default/default.cpp b/src/ai/default/default.cpp index 438ec6621..1c83d4edf 100644 --- a/src/ai/default/default.cpp +++ b/src/ai/default/default.cpp @@ -112,8 +112,8 @@ static void AiStateVehLoop(Player *p) /* not profitable? */ if (v->age >= 730 && - v->profit_last_year >> 8 < _price.station_value * 5 && - v->profit_this_year >> 8 < _price.station_value * 5) { + v->profit_last_year < _price.station_value * 5 * 256 && + v->profit_this_year < _price.station_value * 5 * 256) { _players_ai[p->index].state_counter = 0; _players_ai[p->index].state = AIS_SELL_VEHICLE; _players_ai[p->index].cur_veh = v; -- cgit v1.2.3-70-g09d2