From 520ed0390efd45a4ae1d4c9407921ba810827996 Mon Sep 17 00:00:00 2001 From: Albert Graef Date: Mon, 20 Nov 2023 14:03:19 +0100 Subject: [PATCH] Enable regular_block_length in all arpeggiators, to hopefully work around audio driver issues on Windows. --- share/scripts/barlow_arp.lua | 2 +- share/scripts/simple_arp.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/share/scripts/barlow_arp.lua b/share/scripts/barlow_arp.lua index 9fc3c6c69b..07b2fb1730 100644 --- a/share/scripts/barlow_arp.lua +++ b/share/scripts/barlow_arp.lua @@ -37,7 +37,7 @@ function dsp_ioconfig () end function dsp_options () - return { time_info = true } + return { time_info = true, regular_block_length = true } end function dsp_params () diff --git a/share/scripts/simple_arp.lua b/share/scripts/simple_arp.lua index 771fe2655f..9ed8d8803d 100644 --- a/share/scripts/simple_arp.lua +++ b/share/scripts/simple_arp.lua @@ -67,7 +67,7 @@ function dsp_ioconfig () end function dsp_options () - return { time_info = true } + return { time_info = true, regular_block_length = true } end function dsp_params ()