src/network/core/udp.cpp
changeset 7928 63e18de69e50
parent 7922 a7e266f966d9
child 8113 31b7784db761
--- a/src/network/core/udp.cpp	Mon Nov 19 20:40:14 2007 +0000
+++ b/src/network/core/udp.cpp	Mon Nov 19 21:02:30 2007 +0000
@@ -160,13 +160,13 @@
 
 		/* Count number of GRFs to send information about */
 		for (c = info->grfconfig; c != NULL; c = c->next) {
-			if (!HASBIT(c->flags, GCF_STATIC)) count++;
+			if (!HasBit(c->flags, GCF_STATIC)) count++;
 		}
 		p->Send_uint8 (count); // Send number of GRFs
 
 		/* Send actual GRF Identifications */
 		for (c = info->grfconfig; c != NULL; c = c->next) {
-			if (!HASBIT(c->flags, GCF_STATIC)) this->Send_GRFIdentifier(p, c);
+			if (!HasBit(c->flags, GCF_STATIC)) this->Send_GRFIdentifier(p, c);
 		}
 	}