(svn r6182) -Code cleanup: replaced one (1 << 8) with SHARE_FLAG (missed in r6167)
authorbjarni
Mon, 28 Aug 2006 06:18:35 +0000
changeset 4427 cacdecf56fdf
parent 4426 291490691472
child 4428 0b0ee542d5b6
(svn r6182) -Code cleanup: replaced one (1 << 8) with SHARE_FLAG (missed in r6167)
ship_gui.c
--- a/ship_gui.c	Mon Aug 28 06:13:16 2006 +0000
+++ b/ship_gui.c	Mon Aug 28 06:18:35 2006 +0000
@@ -1151,7 +1151,7 @@
 	Window *w;
 
 	if (show_shared) {
-		w = AllocateWindowDescFront(&_player_ships_desc, (order << 16) | (1 << 8));
+		w = AllocateWindowDescFront(&_player_ships_desc, (order << 16) | SHARE_FLAG);
 	} else {
 		if (player == _local_player) {
 			w = AllocateWindowDescFront(&_player_ships_desc, (station << 16) | player);