summaryrefslogtreecommitdiff
path: root/src/industry_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-08-06 13:56:27 +0000
committerfrosch <frosch@openttd.org>2011-08-06 13:56:27 +0000
commitba7356b520b73b9080be95bf070b691db258c647 (patch)
treec904dcd9502eaaa3dc5397b49b6a467cb04d9981 /src/industry_gui.cpp
parent9e2c2490eb0658eb31d3b1a6358aed78e496b602 (diff)
downloadopenttd-ba7356b520b73b9080be95bf070b691db258c647.tar.xz
(svn r22725) -Fix: Always draw NewGRF supplied texts with a default colour.
Diffstat (limited to 'src/industry_gui.cpp')
-rw-r--r--src/industry_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp
index 83fc4addc..d991c5c70 100644
--- a/src/industry_gui.cpp
+++ b/src/industry_gui.cpp
@@ -792,7 +792,7 @@ public:
/* Use all the available space left from where we stand up to the
* end of the window. We ALSO enlarge the window if needed, so we
* can 'go' wild with the bottom of the window. */
- y = DrawStringMultiLine(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, y, UINT16_MAX, message);
+ y = DrawStringMultiLine(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, y, UINT16_MAX, message, TC_BLACK);
StopTextRefStackUsage();
}
}