1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 04:05:49 +01:00

Another small fix

Used the wrong address in RCT2_GLOBAL
This commit is contained in:
Robert Jordan
2015-05-13 10:34:40 -04:00
parent fdd8461af4
commit af152c7d54

View File

@@ -249,7 +249,7 @@ static void window_text_input_paint(){
}
if (w->frame_no > 15){
uint8 colour = RCT2_ADDRESS(0x0141FC4A, uint8)[w->colours[1] * 8];
uint8 colour = RCT2_ADDRESS(0x0141FC48, uint8)[w->colours[1] * 8];
gfx_fill_rect(dpi, cur_x, y + 9, cur_x + width, y + 9, colour + 5);
}