From 5c31a973a1dae47f351d4dc9e0451b3341c400f8 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Mon, 19 Nov 2007 21:32:20 +0000 Subject: (svn r11482) -Codechange: Remove the doubled function ClrBitT and rename the remaining to fit with the naming style --- src/bridge_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bridge_map.h') diff --git a/src/bridge_map.h b/src/bridge_map.h index be4354fe7..d381762fb 100644 --- a/src/bridge_map.h +++ b/src/bridge_map.h @@ -184,7 +184,7 @@ uint GetBridgeHeight(TileIndex tile); static inline void ClearSingleBridgeMiddle(TileIndex t, Axis a) { assert(MayHaveBridgeAbove(t)); - CLRBIT(_m[t].m6, 6 + a); + ClrBit(_m[t].m6, 6 + a); } -- cgit v1.2.3-54-g00ecf