summaryrefslogtreecommitdiff
path: root/src/company_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/company_gui.cpp')
-rw-r--r--src/company_gui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/company_gui.cpp b/src/company_gui.cpp
index 020258fd5..92a9d722f 100644
--- a/src/company_gui.cpp
+++ b/src/company_gui.cpp
@@ -209,7 +209,7 @@ static void DrawYearColumn(const Rect &r, int year, const Money (*tbl)[EXPENSES_
if (et == INVALID_EXPENSES) {
Money cost = subtotal;
subtotal = 0;
- GfxFillRect(r.left, y, r.right, y, GREY_SCALE(1));
+ GfxFillRect(r.left, y, r.right, y, PC_BLACK);
y += EXP_LINESPACE;
DrawPrice(cost, r.left, r.right, y);
y += FONT_HEIGHT_NORMAL + EXP_BLOCKSPACE;
@@ -222,7 +222,7 @@ static void DrawYearColumn(const Rect &r, int year, const Money (*tbl)[EXPENSES_
}
}
- GfxFillRect(r.left, y, r.right, y, GREY_SCALE(1));
+ GfxFillRect(r.left, y, r.right, y, PC_BLACK);
y += EXP_LINESPACE;
DrawPrice(sum, r.left, r.right, y);
}
@@ -385,7 +385,7 @@ struct CompanyFinancesWindow : Window {
}
case CFW_LOAN_LINE:
- GfxFillRect(r.left, r.top, r.right, r.top, GREY_SCALE(1));
+ GfxFillRect(r.left, r.top, r.right, r.top, PC_BLACK);
break;
}
}