(svn r20339) -Codechange: reorder the HQ drawing data so it's in a slightly more logical order from the map array's point of view.
This commit is contained in:
@@ -253,7 +253,7 @@ static void DrawTile_Unmovable(TileInfo *ti)
|
||||
|
||||
if (type == UNMOVABLE_HQ) {
|
||||
uint8 offset = GetUnmovableOffset(ti->tile);
|
||||
dts = &_unmovable_hq[GetCompanyHQSize(ti->tile) << 2 | GB(offset, 4, 1) | GB(offset, 0, 1) << 1];
|
||||
dts = &_unmovable_hq[GetCompanyHQSize(ti->tile) << 2 | GB(offset, 4, 1) << 1 | GB(offset, 0, 1)];
|
||||
} else {
|
||||
dts = &_unmovables[type];
|
||||
}
|
||||
|
Reference in New Issue
Block a user