(svn r11102) -Codechange: remove some pointless addition+substractions. Patch by frosch.

This commit is contained in:
rubidium
2007-09-14 21:32:21 +00:00
parent d5171df2df
commit 6f296b9870
4 changed files with 6 additions and 6 deletions

View File

@@ -299,8 +299,8 @@ static void DrawTile_Industry(TileInfo *ti)
(HASBIT(image, PALETTE_MODIFIER_COLOR) && dits->building.pal == PAL_NONE) ? GENERAL_SPRITE_COLOR(ind->random_color) : dits->building.pal,
ti->x + dits->subtile_x,
ti->y + dits->subtile_y,
dits->width + 1,
dits->height + 1,
dits->width,
dits->height,
dits->dz,
ti->z,
HASBIT(_transparent_opt, TO_INDUSTRIES));