Changeset - r7606:fc4dbd7b3237
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2007-09-20 19:21:01
rubidium@openttd.org
(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.
1 file changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/sprite.h
Show inline comments
 
@@ -34,10 +34,10 @@ struct DrawTileSprites {
 
struct DrawBuildingsTileStruct {
 
	PalSpriteID ground;
 
	PalSpriteID building;
 
	byte subtile_x:4;
 
	byte subtile_y:4;
 
	byte width:4;
 
	byte height:4;
 
	byte subtile_x;
 
	byte subtile_y;
 
	byte width;
 
	byte height;
 
	byte dz;
 
	byte draw_proc;  /* this allows to specify a special drawing procedure.*/
 
};
0 comments (0 inline, 0 general)