(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:
rubidium
2010-08-03 11:39:17 +00:00
parent d23e2d64b8
commit fbda65a676
2 changed files with 6 additions and 6 deletions

View File

@@ -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];
}