(svn r11426) -Codechange: Just one boolean inversion instead of two

This commit is contained in:
belugas 2007-11-13 03:34:24 +00:00
parent de47054936
commit 7d9d4e789b
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ static void DrawTile_Trees(TileInfo *ti)
StartSpriteCombine();
if (!IsTransparencySet(TO_TREES) || !_patches.invisible_trees) {
if (!(IsTransparencySet(TO_TREES) && _patches.invisible_trees)) {
TreeListEnt te[4];
uint i;