mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r11426) -Codechange: Just one boolean inversion instead of two
This commit is contained in:
parent
de47054936
commit
7d9d4e789b
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user