mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-12 09:09:09 +00:00
(svn r11426) -Codechange: Just one boolean inversion instead of two
This commit is contained in:
@@ -428,7 +428,7 @@ static void DrawTile_Trees(TileInfo *ti)
|
|||||||
|
|
||||||
StartSpriteCombine();
|
StartSpriteCombine();
|
||||||
|
|
||||||
if (!IsTransparencySet(TO_TREES) || !_patches.invisible_trees) {
|
if (!(IsTransparencySet(TO_TREES) && _patches.invisible_trees)) {
|
||||||
TreeListEnt te[4];
|
TreeListEnt te[4];
|
||||||
uint i;
|
uint i;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user