(svn r11382) -Codechange: renamed COUNTBITS to CountBits, as it is no longer a macro (skidd13)

This commit is contained in:
truelight
2007-11-04 22:47:34 +00:00
parent 3517ee6d54
commit 69b1d97c03
6 changed files with 14 additions and 14 deletions

View File

@@ -42,7 +42,7 @@ RoadBits CleanUpRoadBits(const TileIndex tile, RoadBits org_rb)
/* Accept only connective tiles */
connective = (neighbor_rb & mirrored_rb) || // Neighbor has got the fitting RoadBit
COUNTBITS(neighbor_rb) == 1; // Neighbor has got only one Roadbit
CountBits(neighbor_rb) == 1; // Neighbor has got only one Roadbit
} break;