1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 23:34:37 +01:00

Decompile scenery_multiple_paint

This commit is contained in:
zsilencer
2016-05-18 12:31:40 -06:00
parent e7510262ac
commit a963935c11
5 changed files with 331 additions and 11 deletions

View File

@@ -109,7 +109,7 @@ static int scrolling_text_get_matching_or_oldest(rct_string_id stringId, uint16
static uint8 scrolling_text_get_colour(uint32 character)
{
int colour = character & 0x7F;
if (colour & (1 << 7)) {
if (character & (1 << 7)) {
return ColourMapA[colour].light;
} else {
return ColourMapA[colour].mid_dark;