Fix shuffle calculation logic.

Make shuffle percentge based.
This commit is contained in:
2025-06-20 09:21:38 -07:00
parent df1a499fa0
commit 0b610f53c0
5 changed files with 21 additions and 51 deletions

View File

@ -211,7 +211,7 @@ void editChannelParameter(int val) {
ch.setOffset(ch.getOffset() + val);
break;
case PARAM_CH_SHUFFLE:
ch.setShuffleIndex(ch.getShuffleIndex() + val);
ch.setShuffle(ch.getShuffle() + val);
break;
case PARAM_CH_CV_SRC: {
int source = static_cast<int>(ch.getCvSource());