From 0fe36a6900b135361a3f01b36a00d8ad6acac8bc Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 10 Sep 2005 07:38:03 +0000 Subject: (svn r2932) Give the strings consisting of an up/a down arrow symbolic names --- aircraft_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aircraft_gui.c') 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) { -- cgit v1.2.3-54-g00ecf