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/ship_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ship_gui.cpp') diff --git a/src/ship_gui.cpp b/src/ship_gui.cpp index 52689f575..2a57c3aeb 100644 --- a/src/ship_gui.cpp +++ b/src/ship_gui.cpp @@ -24,7 +24,7 @@ void DrawShipImage(const Vehicle *v, int x, int y, VehicleID selection) DrawSprite(v->GetImage(DIR_W), GetVehiclePalette(v), x + 32, y + 10); if (v->index == selection) { - DrawFrameRect(x - 5, y - 1, x + 67, y + 21, 15, FR_BORDERONLY); + DrawFrameRect(x - 5, y - 1, x + 67, y + 21, COLOUR_WHITE, FR_BORDERONLY); } } -- cgit v1.2.3-54-g00ecf