Skip to content

Commit

Permalink
Fix line lost in merge
Browse files Browse the repository at this point in the history
  • Loading branch information
danngreen committed Oct 30, 2024
1 parent c2a48bf commit acd0b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/src/audio/audio.cc
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void AudioStream::process(CombinedAudioBlock &audio_block, ParamBlock &param_blo
}

// Pass Knob values to modules
for (auto [i, knob, latch] : countzip(params.knobs, knob_states)) {
for (auto [i, knob, latch] : countzip(params.knobs, param_state.knobs)) {
if (latch.store_changed(knob))
player.set_panel_param(i, knob);
}
Expand Down

0 comments on commit acd0b5b

Please sign in to comment.