# HG changeset patch # User bjarni # Date 2006-08-28 06:18:35 # Node ID e3ebbdd9636656881f3625a28c078645a639db13 # Parent 814debb6f92461f4cb01174a1aca7614ec0e7471 (svn r6182) -Code cleanup: replaced one (1 << 8) with SHARE_FLAG (missed in r6167) diff --git a/ship_gui.c b/ship_gui.c --- a/ship_gui.c +++ b/ship_gui.c @@ -1151,7 +1151,7 @@ static void ShowPlayerShipsLocal(PlayerI 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);