1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 04:53:12 +01:00

Fix wrong height of station covers

This commit is contained in:
Marijn van der Werf
2016-05-22 01:25:12 +02:00
parent c4d2a3f7ae
commit 783715cc7b

View File

@@ -405,12 +405,12 @@ bool track_paint_util_draw_station_covers(enum edge edge, bool hasFence, const r
break;
case EDGE_SE:
bounds = (rct_xyz16) {32, 32, 0};
boundsOffset = (rct_xyz16) {1, 0, height + 31};
boundsOffset = (rct_xyz16) {1, 0, height + 23};
imageOffset = SPR_STATION_COVER_OFFSET_NE_SW_FRONT;
break;
case EDGE_SW:
bounds = (rct_xyz16) {32, 32, 0};
boundsOffset = (rct_xyz16) {0, 0, height + 31};
boundsOffset = (rct_xyz16) {0, 0, height + 23};
imageOffset = SPR_STATION_COVER_OFFSET_SE_NW_FRONT;
break;
case EDGE_NW: