diff -r 434ce8c1e463 -r 6ffad7a5d242 src/newgrf_gui.cpp --- a/src/newgrf_gui.cpp Sat Nov 03 23:34:12 2007 +0000 +++ b/src/newgrf_gui.cpp Sun Nov 04 00:08:57 2007 +0000 @@ -143,7 +143,7 @@ /* Draw selection background */ if (h) GfxFillRect(3, y, w->width - 15, y + 9, 156); - DoDrawStringTruncated(text, 4, y, h ? 0xC : 0x6, w->width - 18); + DoDrawStringTruncated(text, 4, y, h ? TC_WHITE : TC_ORANGE, w->width - 18); y += 10; } n++; @@ -370,7 +370,7 @@ DrawSprite(SPR_SQUARE, pal, 5, y + 2); if (c->error != NULL) DrawSprite(SPR_WARNING_SIGN, 0, 20, y + 2); txtoffset = c->error != NULL ? 35 : 25; - DoDrawStringTruncated(text, txtoffset, y + 3, WP(w, newgrf_d).sel == c ? 0xC : 0x10, w->width - txtoffset - 10); + DoDrawStringTruncated(text, txtoffset, y + 3, WP(w, newgrf_d).sel == c ? TC_WHITE : TC_BLACK, w->width - txtoffset - 10); y += 14; } }