From 69671d3aef250c7f720c2a6568e3f38c5821a9b2 Mon Sep 17 00:00:00 2001 From: belugas Date: Fri, 1 Aug 2008 03:43:53 +0000 Subject: (svn r13907) -Codechange: Replace a number with Colours enum on DrawFrameRect usage --- src/train_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/train_gui.cpp') diff --git a/src/train_gui.cpp b/src/train_gui.cpp index 9d528d8a6..715263a13 100644 --- a/src/train_gui.cpp +++ b/src/train_gui.cpp @@ -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; -- cgit v1.2.3-54-g00ecf