File diff r1961:7949b074d614 → r1962:cc4c06e3f6b5
graph_gui.c
Show inline comments
 
@@ -904,7 +904,7 @@ static void PerformanceRatingDetailWndPr
 

	
 
		// Paint the player icons
 
		for (i=0;i<MAX_PLAYERS;i++) {
 
       		if (!DEREF_PLAYER(i)->is_active) {
 
       		if (!GetPlayer(i)->is_active) {
 
       			// Check if we have the player as an active player
 
       			if (!(w->disabled_state & (1 << (i+13)))) {
 
       				// Bah, player gone :(
 
@@ -1024,7 +1024,7 @@ static void PerformanceRatingDetailWndPr
 

	
 
        	// Hide the player who are not active
 
        	for (i=0;i<MAX_PLAYERS;i++) {
 
        		if (!DEREF_PLAYER(i)->is_active) {
 
        		if (!GetPlayer(i)->is_active) {
 
        			w->disabled_state += 1 << (i+13);
 
        		}
 
        	}