From 19314a87fe88818d50307bfaf3905ce6d0bd06e4 Mon Sep 17 00:00:00 2001 From: Stefano D'Angelo Date: Thu, 1 Feb 2024 16:25:00 +0100 Subject: [PATCH] fix lv2 audio port order --- templates/lv2/tibia-index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/lv2/tibia-index.js b/templates/lv2/tibia-index.js index d27367a..8727e5f 100644 --- a/templates/lv2/tibia-index.js +++ b/templates/lv2/tibia-index.js @@ -74,7 +74,7 @@ module.exports = function (data, api, outputCommon, outputData) { } else { var e = { type: "audio", direction: b.direction, name: b.name + " Left", shortName: b.shortName + " L", sidechain: b.sidechain, cv: b.cv, busIndex: bi }; e.symbol = data.lv2.busSymbols[bi] + "_L"; - data.tibia.lv2.ports.push(e); + audioPorts.push(e); var e = { type: "audio", direction: b.direction, name: b.name + " Right", shortName: b.shortName + " R", sidechain: b.sidechain, cv: b.cv, busIndex: bi }; e.symbol = data.lv2.busSymbols[bi] + "_R"; audioPorts.push(e);