src/newgrf_config.cpp
changeset 8427 143b0be22af1
parent 8425 72a71d480c5f
child 8609 8c0c3e9dd6a0
--- a/src/newgrf_config.cpp	Tue Nov 20 12:57:24 2007 +0000
+++ b/src/newgrf_config.cpp	Tue Nov 20 13:35:54 2007 +0000
@@ -137,7 +137,7 @@
 		}
 
 		ClrBit(c->flags, GCF_INIT_ONLY);
-		if (init_only) SETBIT(c->flags, GCF_INIT_ONLY);
+		if (init_only) SetBit(c->flags, GCF_INIT_ONLY);
 
 		*dst = c;
 		dst = &c->next;
@@ -234,7 +234,7 @@
 			if (f != NULL) {
 				md5sumToString(buf, lastof(buf), c->md5sum);
 				DEBUG(grf, 1, "NewGRF %08X (%s) not found; checksum %s. Compatibility mode on", BSWAP32(c->grfid), c->filename, buf);
-				SETBIT(c->flags, GCF_COMPATIBLE);
+				SetBit(c->flags, GCF_COMPATIBLE);
 
 				/* Non-found has precedence over compatibility load */
 				if (res != GLC_NOT_FOUND) res = GLC_COMPATIBLE;