summaryrefslogtreecommitdiff
path: root/industry_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-11-16 11:55:06 +0000
committertron <tron@openttd.org>2005-11-16 11:55:06 +0000
commit8d57bfc921c2aa3acbbbb0330ae699032c51afd4 (patch)
tree61593ce65d7a1ce19d929e8790b16c384a092087 /industry_cmd.c
parent1806293e465800e056ba78b6ffc5de80a0161afb (diff)
downloadopenttd-8d57bfc921c2aa3acbbbb0330ae699032c51afd4.tar.xz
(svn r3195) Use bitfields instead of explicit shifting/masking
Diffstat (limited to 'industry_cmd.c')
-rw-r--r--industry_cmd.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/industry_cmd.c b/industry_cmd.c
index 849c3563b..b11176aff 100644
--- a/industry_cmd.c
+++ b/industry_cmd.c
@@ -48,8 +48,10 @@ typedef struct DrawIndustryTileStruct {
uint32 sprite_1;
uint32 sprite_2;
- byte subtile_xy;
- byte width_height;
+ byte subtile_x:4;
+ byte subtile_y:4;
+ byte width:4;
+ byte height:4;
byte dz;
byte proc;
} DrawIndustryTileStruct;
@@ -377,10 +379,10 @@ static void DrawTile_Industry(TileInfo *ti)
if (_display_opt & DO_TRANS_BUILDINGS) MAKE_TRANSPARENT(image);
AddSortableSpriteToDraw(image,
- ti->x | (dits->subtile_xy>>4),
- ti->y | (dits->subtile_xy&0xF),
- (dits->width_height>>4)+1,
- (dits->width_height&0xF)+1,
+ ti->x + dits->subtile_x,
+ ti->y + dits->subtile_y,
+ dits->width + 1,
+ dits->height + 1,
dits->dz,
z);