mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-10 09:32:29 +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];
|
||||
}
|
||||
|
||||
bool tile_element_is_last_for_tile(const rct_tile_element *element) {
|
||||
return (element->flags & TILE_ELEMENT_FLAG_LAST_TILE) != 0;
|
||||
bool rct_tile_element::IsLastForTile() const
|
||||
{
|
||||
return (this->flags & TILE_ELEMENT_FLAG_LAST_TILE) != 0;
|
||||
}
|
||||
|
||||
uint8 rct_tile_element::GetType() const
|
||||
|
||||
Reference in New Issue
Block a user