ship_gui.c
changeset 2406 be5cfb8cd20d
parent 2273 95dd61d9ca47
child 2436 177cb6a8339f
--- a/ship_gui.c	Sat Sep 10 06:39:36 2005 +0000
+++ b/ship_gui.c	Sat Sep 10 07:38:03 2005 +0000
@@ -1030,7 +1030,7 @@
 		/* 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) {