From 7635707ac28d5c7a6c5740d7f138aaa9a22c78bb Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 2 Dec 2025 00:53:40 +0100 Subject: [PATCH] Disable debug-print in MIDI randomize script --- share/scripts/brutalize_midi.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/scripts/brutalize_midi.lua b/share/scripts/brutalize_midi.lua index 7692982aca..7a8e734431 100644 --- a/share/scripts/brutalize_midi.lua +++ b/share/scripts/brutalize_midi.lua @@ -58,7 +58,7 @@ function factory () return function () -- ..generate random offset.. local tickdiff = math.floor (rv['rand']() * max_distance); - print (old_pos:get_beats (), old_pos:get_ticks (), tickdiff) + --print (old_pos:get_beats (), old_pos:get_ticks (), tickdiff) -- .. and calculate new position. local new_pos = Temporal.Beats (old_pos:get_beats (), old_pos:get_ticks () + tickdiff)