diff --git a/src/newgrf_industrytiles.cpp b/src/newgrf_industrytiles.cpp --- a/src/newgrf_industrytiles.cpp +++ b/src/newgrf_industrytiles.cpp @@ -185,10 +185,10 @@ void IndustryDrawTileLayout(const TileIn if (GB(image, 0, SPRITE_WIDTH) != 0) DrawGroundSprite(image, pal); foreach_draw_tile_seq(dtss, dts->seq) { - if (GB(dtss->image, 0, SPRITE_WIDTH) == 0) continue; + if (GB(dtss->image.sprite, 0, SPRITE_WIDTH) == 0) continue; - image = dtss->image; - pal = dtss->pal; + image = dtss->image.sprite; + pal = dtss->image.pal; if (IS_CUSTOM_SPRITE(image)) image += stage;