From 22e55488adc56ce3b834c453ee3f1f882fb46585 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 30 Apr 2024 11:01:44 +0200 Subject: Default to unsigned parameters (if not pitch). --- faust2axo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faust2axo.py b/faust2axo.py index c37a507..b9cbc55 100755 --- a/faust2axo.py +++ b/faust2axo.py @@ -44,7 +44,7 @@ def process_sliders(xml): if pitch: param_type = "frac32.s.map.pitch" else: - param_type = "frac32.s.map" + param_type = "frac32.u.map" inlets += f'\n' params += f'<{param_type} name="{label}" />\n' -- cgit v1.2.3