diff src/network/network_gui.cpp @ 10464:34c23056ba1d draft

(svn r14719) -Codechange: replace DEREF_CLIENT with an instance function and replace looping socket structs with info structs when the loop is only interested in the info structs (i.e. not derefing the info from sockets when one can loop info directly and the socket isn't used)
author rubidium <rubidium@openttd.org>
date Tue, 23 Dec 2008 08:39:30 +0000
parents 7cfe07199455
children bdb3b9eb58d4
line wrap: on
line diff
--- a/src/network/network_gui.cpp
+++ b/src/network/network_gui.cpp
@@ -1419,7 +1419,7 @@
 {
 	const NetworkClientInfo *ci;
 
-	FOR_ALL_ACTIVE_CLIENT_INFOS(ci) {
+	FOR_ALL_CLIENT_INFOS(ci) {
 		if (client_no == 0) return ci;
 		client_no--;
 	}
@@ -1659,7 +1659,7 @@
 		const NetworkClientInfo *ci;
 
 		/* Should be replaced with a loop through all clients */
-		FOR_ALL_ACTIVE_CLIENT_INFOS(ci) {
+		FOR_ALL_CLIENT_INFOS(ci) {
 			num++;
 		}
 
@@ -1689,7 +1689,7 @@
 
 		int y = CLNWND_OFFSET;
 
-		FOR_ALL_ACTIVE_CLIENT_INFOS(ci) {
+		FOR_ALL_CLIENT_INFOS(ci) {
 			TextColour colour;
 			if (this->selected_item == i++) { // Selected item, highlight it
 				GfxFillRect(1, y, 248, y + CLNWND_ROWSIZE - 1, 0);