Browse Source

Tweak pitch input/output names of CV-MIDI and MIDI-CV.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
c10d6fb6a1
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/core/CV_MIDI.cpp
  2. +1
    -1
      src/core/MIDI_CV.cpp

+ 1
- 1
src/core/CV_MIDI.cpp View File

@@ -48,7 +48,7 @@ struct CV_MIDI : Module {

CV_MIDI() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configInput(PITCH_INPUT, "Pitch (1V/oct)");
configInput(PITCH_INPUT, "1V/octave pitch");
configInput(GATE_INPUT, "Gate");
configInput(VEL_INPUT, "Velocity");
configInput(AFT_INPUT, "Aftertouch");


+ 1
- 1
src/core/MIDI_CV.cpp View File

@@ -78,7 +78,7 @@ struct MIDI_CV : Module {

MIDI_CV() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configOutput(PITCH_OUTPUT, "Pitch (1V/oct)");
configOutput(PITCH_OUTPUT, "1V/octave pitch");
configOutput(GATE_OUTPUT, "Gate");
configOutput(VELOCITY_OUTPUT, "Velocity");
configOutput(AFTERTOUCH_OUTPUT, "Aftertouch");


Loading…
Cancel
Save