(svn r22725) -Fix: Always draw NewGRF supplied texts with a default colour.

This commit is contained in:
frosch
2011-08-06 13:56:27 +00:00
parent 9e2c2490eb
commit ba7356b520
2 changed files with 2 additions and 2 deletions

View File

@@ -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();
}
}