commit 33d8821228c25aeafe57da87273dada6a93b499a
parent abedd1a079b2257093883290a4da482aece56e60
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Sat, 8 Jun 2024 13:15:30 +0200
fix filter mod amount not signed
Diffstat:
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/doc/changelog.txt b/doc/changelog.txt
@@ -66,6 +66,8 @@ Osirus:
Vavra:
- [Fix] Excessive parameter changes were sent to host when loading a preset
+- [Fix] Filter mod amount values displayed unsigned values even though the parameter
+ is signed
Xenia:
diff --git a/source/mqJucePlugin/parameterDescriptions_mq.json b/source/mqJucePlugin/parameterDescriptions_mq.json
@@ -100,7 +100,7 @@
{"index":87, "name":"F1EnvMod", "isBipolar":true, "toText":"signed"},
{"index":88, "name":"F1VelMod", "isBipolar":true, "toText":"signed"},
{"index":89, "name":"F1ModSource", "min":0 , "max":13, "isDiscrete":true, "toText":"fastModSource"},
- {"index":90, "name":"F1CutoffMod", "isBipolar":true},
+ {"index":90, "name":"F1CutoffMod", "isBipolar":true, "toText":"signed"},
{"index":91, "name":"F1FmSource", "min":0 , "max":11, "isDiscrete":true, "toText":"fmSource"},
{"index":92, "name":"F1FmAmount"},
{"index":93, "name":"F1Pan", "toText":"pan", "isBipolar":true},
@@ -116,7 +116,7 @@
{"index":107, "name":"F2EnvMod", "isBipolar":true, "toText":"signed"},
{"index":108, "name":"F2VelMod", "isBipolar":true, "toText":"signed"},
{"index":109, "name":"F2ModSource", "min":0 , "max":13, "isDiscrete":true, "toText":"fastModSource"},
- {"index":110, "name":"F2CutoffMod", "isBipolar":true},
+ {"index":110, "name":"F2CutoffMod", "isBipolar":true, "toText":"signed"},
{"index":111, "name":"F2FmSource", "min":0 , "max":11, "isDiscrete":true, "toText":"fmSource"},
{"index":112, "name":"F2FmAmount"},
{"index":113, "name":"F2Pan", "toText":"pan", "isBipolar":true},