diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 11:01:44 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 11:02:07 +0200 |
commit | 22e55488adc56ce3b834c453ee3f1f882fb46585 (patch) | |
tree | 8f86e01b0a42c8b7549074dad6be4ef226f52326 | |
parent | 5a8ac1ccefdc9af65f3a1081614fa1618049fe18 (diff) |
Default to unsigned parameters (if not pitch).
-rwxr-xr-x | faust2axo.py | 2 |
1 files changed, 1 insertions, 1 deletions
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'<frac32 name="{label}" />\n' params += f'<{param_type} name="{label}" />\n' |