mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-23 15:52:55 +01:00
Fix Testpaint
This commit is contained in:
@@ -137,8 +137,9 @@ rct_sprite *get_sprite(size_t sprite_idx) {
|
|||||||
return &sprite_list[sprite_idx];
|
return &sprite_list[sprite_idx];
|
||||||
}
|
}
|
||||||
|
|
||||||
bool tile_element_is_last_for_tile(const rct_tile_element *element) {
|
bool rct_tile_element::IsLastForTile() const
|
||||||
return (element->flags & TILE_ELEMENT_FLAG_LAST_TILE) != 0;
|
{
|
||||||
|
return (this->flags & TILE_ELEMENT_FLAG_LAST_TILE) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8 rct_tile_element::GetType() const
|
uint8 rct_tile_element::GetType() const
|
||||||
|
|||||||
Reference in New Issue
Block a user