From 2930781beaf90dfbbf3338c983062a456d8965bd Mon Sep 17 00:00:00 2001 From: bjarni Date: Mon, 28 Aug 2006 06:18:35 +0000 Subject: [PATCH] (svn r6182) -Code cleanup: replaced one (1 << 8) with SHARE_FLAG (missed in r6167) --- ship_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ship_gui.c b/ship_gui.c index 312809abda..8826f11055 100644 --- a/ship_gui.c +++ b/ship_gui.c @@ -1151,7 +1151,7 @@ static void ShowPlayerShipsLocal(PlayerID player, StationID station, OrderID ord 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);