Skip to content

Commit

Permalink
MidiOutputHandler: correct comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Be-ing authored and Holzhaus committed Nov 16, 2021
1 parent 46c8bb0 commit 0f351ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/midi/midioutputhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ MidiOutputHandler::MidiOutputHandler(MidiController* controller,
: m_pController(controller),
m_mapping(mapping),
m_cos(mapping.controlKey, this, ControlFlag::NoAssertIfMissing),
m_lastVal(-1),
m_logger(logger) { // -1 = virgin
m_lastVal(-1), // arbitrary invalid MIDI value
m_logger(logger) {
m_cos.connectValueChanged(this, &MidiOutputHandler::controlChanged);
}

Expand Down

0 comments on commit 0f351ae

Please sign in to comment.