Skip to content

Commit 0c4efde

Browse files
committed
fix: prevent tempo from going under 0.25
1 parent a1de6f8 commit 0c4efde

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

scripts/control_draw/control_draw.gml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,7 @@ function control_draw() {
509509
}
510510
}
511511
}
512+
if (tempo < 0.25) tempo = 0.25
512513
if (window = w_dragselection) {
513514
selection_x = starta + floor((mouse_x - (x1 + 2)) / 32) - select_pressa
514515
selection_y = startb + floor((mouse_y - (y1 + 34)) / 32) - select_pressb

0 commit comments

Comments
 (0)