(svn r13907) -Codechange: Replace a number with Colours enum on DrawFrameRect usage

This commit is contained in:
belugas
2008-08-01 03:43:53 +00:00
parent 1b21ece898
commit 1648da0e47
8 changed files with 10 additions and 10 deletions

View File

@@ -109,7 +109,7 @@ void DrawTrainImage(const Vehicle *v, int x, int y, VehicleID selection, int cou
if (highlight_l != highlight_r) {
/* Draw the highlight. Now done after drawing all the engines, as
* the next engine after the highlight could overlap it. */
DrawFrameRect(highlight_l, 0, highlight_r, 13, 15, FR_BORDERONLY);
DrawFrameRect(highlight_l, 0, highlight_r, 13, COLOUR_WHITE, FR_BORDERONLY);
}
_cur_dpi = old_dpi;