(svn r11482) -Codechange: Remove the doubled function ClrBitT and rename the remaining to fit with the naming style

This commit is contained in:
skidd13
2007-11-19 21:32:20 +00:00
parent c0a2c0c23e
commit 6801cceda1
32 changed files with 93 additions and 98 deletions

View File

@@ -455,7 +455,7 @@ uint RoadStop::AllocateBay()
uint bay_nr = 0;
while (!HasBit(status, bay_nr)) bay_nr++;
CLRBIT(status, bay_nr);
ClrBit(status, bay_nr);
return bay_nr;
}
@@ -466,7 +466,7 @@ uint RoadStop::AllocateBay()
void RoadStop::AllocateDriveThroughBay(uint nr)
{
assert(nr < MAX_BAY_COUNT);
CLRBIT(status, nr);
ClrBit(status, nr);
}
/**