Skip to content

Commit 8e39e88

Browse files
committed
Remove performance indicator on window title
May be added later after it's polished a little more.
1 parent 4441a7f commit 8e39e88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/control_draw/control_draw.gml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ curs = cr_default
1010
showmenu = 0
1111
cursmarker = 0
1212
compx = 180
13-
window_set_caption("(" + string_format(currspeed * 100, 1, 0) + "%) " + condstr(filename = "", "Unsaved song") + filename_name(filename) + condstr(changed && filename != "", "*") + " - Minecraft Note Block Studio")
13+
window_set_caption(condstr(filename = "", "Unsaved song") + filename_name(filename) + condstr(changed && filename != "", "*") + " - Minecraft Note Block Studio")
14+
// Performance indicator: "(" + string_format(currspeed * 100, 1, 0) + "%) "
1415
draw_set_alpha(1)
1516
draw_theme_color()
1617
draw_set_font(fnt_main)

0 commit comments

Comments
 (0)