src/graph_gui.cpp
changeset 8427 143b0be22af1
parent 8424 4a488a90ccab
child 8428 f8300c908bd9
--- 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;