diff --git a/CHANGELOG.md b/CHANGELOG.md index 614160ac..571ef22e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ In this document, Ctrl means Cmd on Mac. ### 2.5.2 (2024-05-09) - Add configurable cable color labels. -- When duplicating module with cables, duplicate cables connected to outputs as well as inputs. +- When duplicating module with cables, duplicate cables connected to module's outputs as well as inputs. - Allow building multi-arch x64+arm64 "Universal" Mac binary. - Optimize engine's cable stepping algorithm to be as CPU-efficient as non-stackable inputs. - Limit log file size to 10 MB. diff --git a/include/dsp/midi.hpp b/include/dsp/midi.hpp index fd050b14..5400cca8 100644 --- a/include/dsp/midi.hpp +++ b/include/dsp/midi.hpp @@ -248,12 +248,13 @@ struct MidiParser { /** Enables pitch-wheel and mod-wheel exponential smoothing */ bool smooth; - /** Clock output pulses per quarter note */ + /** Number of 24 PPQN clocks between clock divider pulses */ uint32_t clockDivision; /** Actual number of polyphonic channels */ uint8_t channels; + /** Method for assigning notes to polyphony channels */ enum PolyMode { ROTATE_MODE, REUSE_MODE, diff --git a/include/engine/Port.hpp b/include/engine/Port.hpp index c0be5649..bae46303 100644 --- a/include/engine/Port.hpp +++ b/include/engine/Port.hpp @@ -193,7 +193,9 @@ struct Port { return channels > 1; } - /** Use getNormalVoltage() instead. */ + /** Use getNormalVoltage() instead. + "Normal" voltage is the correct term, not "normalized" voltage. + */ DEPRECATED float normalize(float normalVoltage) { return getNormalVoltage(normalVoltage); } diff --git a/src/core/Audio.cpp b/src/core/Audio.cpp index 3e64b7b1..ccf93ebd 100644 --- a/src/core/Audio.cpp +++ b/src/core/Audio.cpp @@ -265,7 +265,7 @@ struct Audio : Module { float v = 0.f; if (inputs[AUDIO_INPUTS + i].isConnected()) v = inputs[AUDIO_INPUTS + i].getVoltageSum() / 10.f; - // Normalize right input to left on Audio-2 + // Normal right input to left on Audio-2 else if (i == 1 && NUM_AUDIO_INPUTS == 2) v = inputFrame.samples[0];