From 80d4eaf9c7de9278b65bdd1753ad6a17274c1c76 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 21 Jun 2020 20:11:56 +0200 Subject: [PATCH] Change the default and range for the number of voices in the VST --- vst/SfizzVstState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vst/SfizzVstState.h b/vst/SfizzVstState.h index a00d37a9..becafad3 100644 --- a/vst/SfizzVstState.h +++ b/vst/SfizzVstState.h @@ -87,7 +87,7 @@ struct SfizzParameterRange { }; static constexpr SfizzParameterRange kParamVolumeRange(0.0, -60.0, +6.0); -static constexpr SfizzParameterRange kParamNumVoicesRange(256.0, 1.0, 512.0); +static constexpr SfizzParameterRange kParamNumVoicesRange(64.0, 1.0, 256.0); static constexpr SfizzParameterRange kParamOversamplingRange(0.0, 0.0, 3.0); static constexpr SfizzParameterRange kParamPreloadSizeRange(8192.0, 1024.0, 65536.0); static constexpr SfizzParameterRange kParamScalaRootKey(60.0, 0.0, 127.0);