diff -r f12c2437a050 -r b0a46cd92225 src/graph_gui.cpp --- a/src/graph_gui.cpp Tue Nov 20 12:57:24 2007 +0000 +++ b/src/graph_gui.cpp Tue Nov 20 13:35:54 2007 +0000 @@ -260,7 +260,7 @@ FOR_ALL_PLAYERS(p) { if (p->is_active) continue; - SETBIT(_legend_excluded_players, p->index); + SetBit(_legend_excluded_players, p->index); RaiseWindowWidget(w, p->index + 3); } @@ -334,7 +334,7 @@ /* Exclude the players which aren't valid */ FOR_ALL_PLAYERS(p) { - if (!p->is_active) SETBIT(excluded_players, p->index); + if (!p->is_active) SetBit(excluded_players, p->index); } gd->excluded_data = excluded_players; gd->num_vert_lines = 24;