summaryrefslogtreecommitdiff
path: root/aircraft_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
commit2aa27f9ecbcedfb744ead4e3be04e08f6810ded2 (patch)
treed2a18359b544bdb53c4ea4482b8aa03f378c802a /aircraft_gui.c
parenta43e08f3c3a1b4617abbbd330fbef891f55cbf5d (diff)
downloadopenttd-2aa27f9ecbcedfb744ead4e3be04e08f6810ded2.tar.xz
(svn r2932) Give the strings consisting of an up/a down arrow symbolic names
Diffstat (limited to 'aircraft_gui.c')
-rw-r--r--aircraft_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aircraft_gui.c b/aircraft_gui.c
index 71a30e91a..eec495518 100644
--- a/aircraft_gui.c
+++ b/aircraft_gui.c
@@ -1051,7 +1051,7 @@ static void PlayerAircraftWndProc(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) {