fix lv2 audio port order

This commit is contained in:
Stefano D'Angelo 2024-02-01 16:25:00 +01:00
parent 8479c52b5c
commit 19314a87fe

View File

@ -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);