2
0
Fork 0

Update PluginProcessor.cpp

OSC1/2 pitch semitone tooltips
This commit is contained in:
George Reales 2022-03-10 14:49:06 +01:00
parent 4c75e9f150
commit 29bce70503
1 changed files with 2 additions and 2 deletions

View File

@ -988,8 +988,8 @@ String ObxdAudioProcessor::getTrueParameterValueFromNormalizedRange(size_t index
}
// case XMOD: return "Xmod";
// case OSC2HS: return "Osc2HardSync";
// case OSC1P: return String{ getPitch(value * 48), 2 };
// case OSC2P: return String{ getPitch(value * 48), 2 };
case OSC1P: return String{ (float(value * 4) - 2) * 12.f, 1 } + " Semitones";
case OSC2P: return String{ (float(value * 4) - 2) * 12.f, 1 } + " Semitones";
// case PORTAMENTO: return "Portamento";
// case UNISON: return "Unison";
// case FLT_KF: return "FilterKeyFollow";