forked from mirror/OpenTTD
(svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
Patch heavily based on BiBB's work (FS#1383)
This commit is contained in:
@@ -1500,7 +1500,7 @@ static void ViewportDrawStrings(DrawPixelInfo *dpi, const StringSpriteToDraw *ss
|
||||
* otherwise colors from _string_colormap are assumed. */
|
||||
colour = _colour_gradient[ss->color][6] | IS_PALETTE_COLOR;
|
||||
} else {
|
||||
colour = 16;
|
||||
colour = TC_BLACK;
|
||||
}
|
||||
DrawString(
|
||||
UnScaleByZoom(ss->x, zoom), UnScaleByZoom(ss->y, zoom) - (ss->width & 0x8000 ? 2 : 0),
|
||||
|
Reference in New Issue
Block a user