cmDspFx.c : Fixed bug where GateToSym object set the 'off' symbol event
when the received off symbol port value was not equal to 0.
This commit is contained in:
parent
9567d9211d
commit
5566cbdae7
@ -5355,7 +5355,7 @@ cmDspRC_t _cmDspGateToSym_Recv(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEv
|
||||
break;
|
||||
|
||||
case kOffGsId:
|
||||
if( cmDspBool(inst,kOffGsId) )
|
||||
if( !cmDspBool(inst,kOffGsId) )
|
||||
cmDspSetSymbol(ctx,inst,kOutGsId,offSymId);
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user