Skip to content

Commit

Permalink
Adds back in channel param
Browse files Browse the repository at this point in the history
  • Loading branch information
Quixotic7 committed Mar 2, 2024
1 parent d9cdb9b commit 104d97d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OMX-27-firmware/src/midifx/midifx_randomizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ namespace midifx
lengthPerc_ = constrain(lengthPerc_ + amtFast, 0, 100);
break;
case 3:
// midiChan_ = constrain(midiChan_ + amtSlow, 0, 16);
midiChan_ = constrain(midiChan_ + amtSlow, 0, 16);
break;
}
}
Expand Down Expand Up @@ -411,7 +411,7 @@ namespace midifx
omxDisp.setLegend(0, "VEL-", velMinus_);
omxDisp.setLegend(1, "VEL+", velPlus_);
omxDisp.setLegend(2, "LEN%", lengthPerc_);
// omxDisp.setLegend(3, "CHAN", midiChan_ == 0, midiChan_);
omxDisp.setLegend(3, "CHAN", midiChan_ == 0, midiChan_);
}
break;
case RZPAGE_3:
Expand Down

0 comments on commit 104d97d

Please sign in to comment.