Skip to content

Commit

Permalink
Actually use the mod matrix feedback level
Browse files Browse the repository at this point in the history
Duh. Feedback direct mapping did nothing
  • Loading branch information
baconpaul committed Jan 2, 2025
1 parent 7833ce1 commit 0973135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dsp/matrix_node.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ struct MatrixNodeSelf : EnvelopeSupport<Patch::SelfNode>,

for (int i = 0; i < blockSize; ++i)
{
modlev[i] = l2f * lfo.outputBlock[i] + e2f * env.outputCache[i];
modlev[i] = l2f * lfo.outputBlock[i] + e2f * env.outputCache[i] + fbMod;
}
}
else
Expand All @@ -237,7 +237,7 @@ struct MatrixNodeSelf : EnvelopeSupport<Patch::SelfNode>,

for (int i = 0; i < blockSize; ++i)
{
modlev[i] = fbBase + l2f * lfo.outputBlock[i] + e2f * env.outputCache[i];
modlev[i] = fbBase + l2f * lfo.outputBlock[i] + e2f * env.outputCache[i] + fbMod;
}
}
for (int j = 0; j < blockSize; ++j)
Expand Down

0 comments on commit 0973135

Please sign in to comment.