(svn r26906) -Codechange: Scale depot and station picker buttons by GUI zoom level.

This commit is contained in:
peter1138
2014-09-22 08:01:25 +00:00
parent 8a0e523ce5
commit 4f63bbedc1
5 changed files with 74 additions and 20 deletions

View File

@@ -1415,9 +1415,6 @@ void DrawRoadDepotSprite(int x, int y, DiagDirection dir, RoadType rt)
PaletteID palette = COMPANY_SPRITE_COLOUR(_local_company);
const DrawTileSprites *dts = (rt == ROADTYPE_TRAM) ? &_tram_depot[dir] : &_road_depot[dir];
x += 33;
y += 17;
DrawSprite(dts->ground.sprite, PAL_NONE, x, y);
DrawOrigTileSeqInGUI(x, y, dts, palette);
}