summaryrefslogtreecommitdiff
path: root/src/industry_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-07-03 14:49:19 +0000
committerfrosch <frosch@openttd.org>2011-07-03 14:49:19 +0000
commit98a9d30bfe5ad1dc55f1fe0b30dcbf8feaa8d571 (patch)
tree3c057b643c8e3990dd6b81863bd8ede5f9f1b56d /src/industry_gui.cpp
parent5ea8b07e056136ea017de8d2612c2493b12c0a9d (diff)
downloadopenttd-98a9d30bfe5ad1dc55f1fe0b30dcbf8feaa8d571.tar.xz
(svn r22631) -Fix: Additional text in fund industry window is NewGRF supplied and thus should have 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 e0d5cd4e7..83fc4addc 100644
--- a/src/industry_gui.cpp
+++ b/src/industry_gui.cpp
@@ -459,7 +459,7 @@ public:
str = GetGRFStringID(indsp->grf_prop.grffile->grfid, 0xD000 + callback_res); // No. here's the new string
if (str != STR_UNDEFINED) {
StartTextRefStackUsage(6);
- DrawStringMultiLine(left, right, y, bottom, str);
+ DrawStringMultiLine(left, right, y, bottom, str, TC_YELLOW);
StopTextRefStackUsage();
}
}