From eeaa348f8bfafae1a6e56b857a97d9d23577dcac Mon Sep 17 00:00:00 2001 From: skidd13 Date: Tue, 20 Nov 2007 13:35:54 +0000 Subject: (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style --- src/newgrf_config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/newgrf_config.cpp') diff --git a/src/newgrf_config.cpp b/src/newgrf_config.cpp index 4d9de7489..8a26ad40f 100644 --- a/src/newgrf_config.cpp +++ b/src/newgrf_config.cpp @@ -137,7 +137,7 @@ GRFConfig **CopyGRFConfigList(GRFConfig **dst, const GRFConfig *src, bool init_o } 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 @@ GRFListCompatibility IsGoodGRFConfigList() 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; -- cgit v1.2.3-70-g09d2