mirror of https://github.com/OpenTTD/OpenTTD
(svn r11133) -Fix (r11102) [FS#1245]: in some cases vehicles would be drawn over houses when they should be drawn behind the houses. Patch by frosch.
parent
5fe04f2db7
commit
2ce95b9fd0
|
@ -34,10 +34,10 @@ struct DrawTileSprites {
|
||||||
struct DrawBuildingsTileStruct {
|
struct DrawBuildingsTileStruct {
|
||||||
PalSpriteID ground;
|
PalSpriteID ground;
|
||||||
PalSpriteID building;
|
PalSpriteID building;
|
||||||
byte subtile_x:4;
|
byte subtile_x;
|
||||||
byte subtile_y:4;
|
byte subtile_y;
|
||||||
byte width:4;
|
byte width;
|
||||||
byte height:4;
|
byte height;
|
||||||
byte dz;
|
byte dz;
|
||||||
byte draw_proc; /* this allows to specify a special drawing procedure.*/
|
byte draw_proc; /* this allows to specify a special drawing procedure.*/
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue