add a2 for basic

patch.outa2[i]
This commit is contained in:
pblivingston 2025-11-26 10:01:32 -05:00
parent f3ed1de557
commit 15a977834d
2 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@ $KindMap = @{
'p_out' = 1 'p_out' = 1
'v_out' = 1 'v_out' = 1
'asio_in' = 4 'asio_in' = 4
'asio_out' = 0 'asio_out' = 8
'composite' = 0 'composite' = 0
'insert' = 0 'insert' = 0
'vban_in' = 4 'vban_in' = 4

View File

@ -30,6 +30,9 @@ class Patch : IRemote {
hidden [void] AddASIOOutMembers () { hidden [void] AddASIOOutMembers () {
$num_A = $this.remote.kind.p_out $num_A = $this.remote.kind.p_out
if ($this.remote.kind.name -eq 'basic') {
$num_A += $this.remote.kind.v_out
}
$asio_out = $this.remote.kind.asio_out $asio_out = $this.remote.kind.asio_out
if ($asio_out -le 0) { return } if ($asio_out -le 0) { return }