This commit is contained in:
5684185+vsariola@users.noreply.github.com
2025-07-06 21:38:42 +03:00
parent e1aa9c0d26
commit 57926d4b0e
91 changed files with 454 additions and 270 deletions

View File

@ -144,10 +144,10 @@ func NewBytecode(patch sointu.Patch, featureSet FeatureSet, bpm int) (*Bytecode,
if unit.Parameters["highpass"] == 1 {
flags += 0x10
}
if unit.Parameters["negbandpass"] == 1 {
if unit.Parameters["bandpass"] == -1 {
flags += 0x08
}
if unit.Parameters["neghighpass"] == 1 {
if unit.Parameters["highpass"] == -1 {
flags += 0x04
}
b.op(opcode + p["stereo"])