We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca9fae1 commit 6912969Copy full SHA for 6912969
scripts/control_create/control_create.gml
@@ -220,6 +220,7 @@ asso_midi = 0
220
asso_sch = 0
221
w_asso_start = 1
222
wmenu = 0
223
+loop = 0
224
225
// Midi export / import
226
w_midi_remember = 1
scripts/control_draw/control_draw.gml
@@ -493,6 +493,12 @@ if (playing = 1 || forward<>0) {
493
if (playing = 1) marker_pos += (tempo / room_speed)
494
if (forward != 0) {
495
marker_pos += (tempo / room_speed) * (forward - (forward < 0 && playing = 1))
496
+ }
497
+ //loop song
498
+ if (loop = 1 && marker_pos > enda) {
499
+ starta = 0
500
+ marker_pos = starta
501
+ sb_val[scrollbarh] = starta
502
}
503
if (marker_pos > enda + totalcols) {
504
marker_pos = enda + totalcols
0 commit comments