From 9bdb194b2a94c60e54e1a8dac4b984a9f8d25914 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/vehicle_base.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/vehicle_base.h') diff --git a/src/vehicle_base.h b/src/vehicle_base.h index 8d9c015d4..428398d6c 100644 --- a/src/vehicle_base.h +++ b/src/vehicle_base.h @@ -437,6 +437,18 @@ public: */ Money GetDisplayRunningCost() const { return (this->GetRunningCost() >> 8); } + /** + * Gets the profit vehicle had this year. It can be sent into SetDParam for string processing. + * @return the vehicle's profit this year + */ + Money GetDisplayProfitThisYear() const { return (this->profit_this_year >> 8); } + + /** + * Gets the profit vehicle had last year. It can be sent into SetDParam for string processing. + * @return the vehicle's profit last year + */ + Money GetDisplayProfitLastYear() const { return (this->profit_last_year >> 8); } + /** * Set the next vehicle of this vehicle. * @param next the next vehicle. NULL removes the next vehicle. -- cgit v1.2.3-54-g00ecf