summaryrefslogtreecommitdiff
path: root/ship_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-09-10 07:38:03 +0000
committertron <tron@openttd.org>2005-09-10 07:38:03 +0000
commit0fe36a6900b135361a3f01b36a00d8ad6acac8bc (patch)
treed2a18359b544bdb53c4ea4482b8aa03f378c802a /ship_gui.c
parent04f051e423757c59af90b0727db6efdec3e18af5 (diff)
downloadopenttd-0fe36a6900b135361a3f01b36a00d8ad6acac8bc.tar.xz
(svn r2932) Give the strings consisting of an up/a down arrow symbolic names
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 ae7c22906..a39d94c73 100644
--- a/ship_gui.c
+++ b/ship_gui.c
@@ -1030,7 +1030,7 @@ static void PlayerShipsWndProc(Window *w, WindowEvent *e)
/* draw sorting criteria string */
DrawString(85, 15, _vehicle_sort_listing[vl->sort_type], 0x10);
/* draw arrow pointing up/down for ascending/descending sorting */
- DoDrawString(vl->flags & VL_DESC ? "\xAA" : "\xA0", 69, 15, 0x10);
+ DoDrawString(vl->flags & VL_DESC ? DOWNARROW : UPARROW, 69, 15, 0x10);
max = min(w->vscroll.pos + w->vscroll.cap, vl->list_length);
for (i = w->vscroll.pos; i < max; ++i) {