Skip to content

Commit fc0ff84

Browse files
committed
Changed song timers to better fit new fonts
1 parent e56b4f6 commit fc0ff84

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/control_draw/control_draw.gml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -894,18 +894,18 @@ draw_set_halign(fa_left)
894894
// Marker position
895895
draw_set_halign(fa_right)
896896
draw_set_color(0)
897-
draw_set_font(fnt_mainbold)
898-
draw_text(88, 56, time_str(marker_pos / tempo))
897+
draw_set_font(fnt_info_med_bold)
898+
draw_text(93, 52, time_str(marker_pos / tempo))
899899

900900
// Song length
901901
draw_set_font(fnt_small)
902-
draw_text(88, 68, "/ " + time_str(enda / tempo))
902+
draw_text(93, 69, "/ " + time_str(enda / tempo))
903903
draw_set_font(fnt_main)
904904

905905
// Tempo
906906
draw_sprite(spr_tempobox, 0, 108, 57)
907907
draw_set_halign(fa_center)
908-
draw_text(136, 61, string_format(tempo, 4, 2) + " t / s")
908+
draw_text(136, 60, string_format(tempo, 4, 2) + " t / s")
909909
draw_set_halign(fa_left)
910910
a = mouse_rectangle(108, 57, 64, 22)
911911
popup_set(108, 57, 64, 22, "Tempo of the song (measured in ticks per second.)\nClick and drag to change. Right click to reset.")

0 commit comments

Comments
 (0)