Skip to content

Commit 4b7cd48

Browse files
committed
Fix marker contrast in blackout mode with light theme
1 parent debe9b8 commit 4b7cd48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/control_draw/control_draw.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -811,8 +811,8 @@ if (section_exists) {
811811

812812
marker_pos = median(0, marker_pos, enda + totalcols)
813813
a = floor(marker_pos * 32 - starta * 32)
814-
draw_sprite(spr_marker, 0 + 6 * (theme = 2), x1 + 2 + a, y1 + 2)
815-
draw_sprite_ext(spr_marker, 1 + 6 * (theme = 2), x1 + 2 + a, y1 + 2, 1, totalrows * 2 + 6, 0, -1, 1)
814+
draw_sprite(spr_marker, 0 + 6 * (theme = 2 || blackout), x1 + 2 + a, y1 + 2)
815+
draw_sprite_ext(spr_marker, 1 + 6 * (theme = 2 || blackout), x1 + 2 + a, y1 + 2, 1, totalrows * 2 + 6, 0, -1, 1)
816816

817817

818818
draw_set_font(fnt_main)

0 commit comments

Comments
 (0)