mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 22:34:33 +01:00
Fix another omission from #8453
This commit is contained in:
@@ -281,8 +281,7 @@ colour_t RCT12LargeSceneryElement::GetSecondaryColour() const
|
||||
|
||||
BannerIndex RCT12LargeSceneryElement::GetBannerIndex() const
|
||||
{
|
||||
return (entryIndex & 0xC0) | (((colour[0]) & ~TILE_ELEMENT_COLOUR_MASK) >> 2)
|
||||
| (((colour[1]) & ~TILE_ELEMENT_COLOUR_MASK) >> 5);
|
||||
return (type & 0xC0) | (((colour[0]) & ~TILE_ELEMENT_COLOUR_MASK) >> 2) | (((colour[1]) & ~TILE_ELEMENT_COLOUR_MASK) >> 5);
|
||||
}
|
||||
|
||||
uint8_t RCT12WallElement::GetEntryIndex() const
|
||||
|
||||
Reference in New Issue
Block a user