diff options
author | tron <tron@openttd.org> | 2005-11-16 11:55:06 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-11-16 11:55:06 +0000 |
commit | 8d57bfc921c2aa3acbbbb0330ae699032c51afd4 (patch) | |
tree | 61593ce65d7a1ce19d929e8790b16c384a092087 /table | |
parent | 1806293e465800e056ba78b6ffc5de80a0161afb (diff) | |
download | openttd-8d57bfc921c2aa3acbbbb0330ae699032c51afd4.tar.xz |
(svn r3195) Use bitfields instead of explicit shifting/masking
Diffstat (limited to 'table')
-rw-r--r-- | table/industry_land.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/table/industry_land.h b/table/industry_land.h index 19629f4f0..6c5cc14ec 100644 --- a/table/industry_land.h +++ b/table/industry_land.h @@ -1,6 +1,6 @@ /* $Id$ */ -#define M(s1,s2,sx,sy,w,h,dz,p) {s1,s2,(sx<<4)|sy,((w-1)<<4)|(h-1),dz,p} +#define M(s1, s2, sx, sy, w, h, dz, p) { s1, s2, sx, sy, w - 1, h - 1, dz, p } static const DrawIndustryTileStruct _industry_draw_tile_data[700] = { M( 0xf54, 0x7db, 7, 0, 9, 9, 10, 0), |