Fix #9989: Zero Net Profit is neither negative nor positive (#9991)

This commit is contained in:
Tyler Trahan
2022-09-21 04:38:03 -06:00
committed by GitHub
parent 5e413c9dcd
commit a4e00c5cb5
2 changed files with 5 additions and 2 deletions

View File

@@ -214,9 +214,11 @@ static void DrawCategories(const Rect &r)
static void DrawPrice(Money amount, int left, int right, int top, TextColour colour)
{
StringID str = STR_FINANCES_NEGATIVE_INCOME;
if (amount < 0) {
if (amount == 0) {
str = STR_FINANCES_ZERO_INCOME;
} else if (amount < 0) {
amount = -amount;
str++;
str = STR_FINANCES_POSITIVE_INCOME;
}
SetDParam(0, amount);
DrawString(left, right, top, str, colour, SA_RIGHT);