summaryrefslogtreecommitdiff
path: root/ship_gui.c
diff options
context:
space:
mode:
authorhackykid <hackykid@openttd.org>2005-06-15 17:27:14 +0000
committerhackykid <hackykid@openttd.org>2005-06-15 17:27:14 +0000
commit90900802b9129f2dcd052a78abb5ae656f7604c5 (patch)
tree675809baa0b80a6754f7327b5b7cc056952ef6e0 /ship_gui.c
parentfd95f78dfc9a0c16e458da19613d64960c5ab37f (diff)
downloadopenttd-90900802b9129f2dcd052a78abb5ae656f7604c5.tar.xz
(svn r2444) - CodeChange: Add an enum for demagicifying the values of the 'flags' parameter of DrawFrameRect(). (_Abraxa_)
Diffstat (limited to 'ship_gui.c')
-rw-r--r--ship_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ship_gui.c b/ship_gui.c
index 5100d3805..89eaefabf 100644
--- a/ship_gui.c
+++ b/ship_gui.c
@@ -64,7 +64,7 @@ static void DrawShipImage(const Vehicle *v, int x, int y, VehicleID selection)
DrawSprite(image | ormod, x+32, y+10);
if (v->index == selection) {
- DrawFrameRect(x-5, y-1, x+67, y+21, 15, 0x10);
+ DrawFrameRect(x-5, y-1, x+67, y+21, 15, FR_BORDERONLY);
}
}