From c0a2c0c23e129cb81400c5204fc9d0eedd9afb85 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Mon, 19 Nov 2007 21:02:30 +0000 Subject: (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style --- src/npf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/npf.cpp') diff --git a/src/npf.cpp b/src/npf.cpp index 0afee79b0..af42bcb9e 100644 --- a/src/npf.cpp +++ b/src/npf.cpp @@ -602,7 +602,7 @@ static void NPFFollowTrack(AyStar* aystar, OpenListNode* current) /* check correct rail type (mono, maglev, etc) */ if (type == TRANSPORT_RAIL) { RailType dst_type = GetTileRailType(dst_tile); - if (!HASBIT(aystar->user_data[NPF_RAILTYPES], dst_type)) + if (!HasBit(aystar->user_data[NPF_RAILTYPES], dst_type)) return; } -- cgit v1.2.3-54-g00ecf