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

This commit is contained in:
skidd13
2007-11-20 13:35:54 +00:00
parent 795174edf1
commit 3ae50673a3
45 changed files with 161 additions and 166 deletions

View File

@@ -204,7 +204,7 @@ static void PlaceRoadStop(TileIndex tile, uint32 p2, uint32 cmd)
uint32 p1 = _road_station_picker_orientation;
if (p1 >= DIAGDIR_END) {
SETBIT(p2, 1); // It's a drive-through stop
SetBit(p2, 1); // It's a drive-through stop
p1 -= DIAGDIR_END; // Adjust picker result to actual direction
}
DoCommandP(tile, p1, p2, CcRoadDepot, cmd);