summaryrefslogtreecommitdiff
path: root/src/company_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-05-06 21:13:29 +0000
committerfrosch <frosch@openttd.org>2011-05-06 21:13:29 +0000
commit5e449b8fae1f5f9941a385a49eb1e958788809c2 (patch)
tree25417fb45b1166841824fccffbbd217810246bf6 /src/company_gui.cpp
parent4b0a2fbe293acbfe138b788701b6e71c5356d0e8 (diff)
downloadopenttd-5e449b8fae1f5f9941a385a49eb1e958788809c2.tar.xz
(svn r22429) -Add: some constants for specific palette colours used in the GUI.
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;
}
}