mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-24 11:22:02 -05:00
Remove unnecessary compare with zero
This commit is contained in:
parent
112b40910b
commit
ab058fe659
1 changed files with 1 additions and 1 deletions
|
@ -2185,7 +2185,7 @@ static void window_tile_inspector_scrollpaint(rct_window* w, rct_drawpixelinfo*
|
|||
|
||||
const int32_t baseHeight = tileElement->base_height;
|
||||
const int32_t clearanceHeight = tileElement->clearance_height;
|
||||
const bool ghost = (tileElement->IsGhost()) != 0;
|
||||
const bool ghost = tileElement->IsGhost();
|
||||
const bool broken = (tileElement->flags & TILE_ELEMENT_FLAG_BROKEN) != 0;
|
||||
const bool last = (tileElement->flags & TILE_ELEMENT_FLAG_LAST_TILE) != 0;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue