commit bae992185ee36a6828eb75f57bf0e37ab873cdfb parent 811bd50a819f38911d80664c10a55c0bf48f2ae0 Author: keith <[email protected]> Date: Sun, 20 Jun 2021 20:15:30 -0500 Corrected model select indexing logic Diffstat:
M | Source/PluginProcessor.cpp | | | 10 | +++++++++- |
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp @@ -246,7 +246,15 @@ void NeuralPiAudioProcessor::setStateInformation(const void* data, int sizeInByt int NeuralPiAudioProcessor::getModelIndex(float model_param) { //return static_cast<int>(model_param * (jsonFiles.size() - 1.0)); - return static_cast<int>(model_param * (num_models - 1.0)); + //return static_cast<int>(model_param * (num_models - 1.0)); + int a = static_cast<int>(round(model_param * (num_models - 1.0))); + if (a > num_models - 1) { + a = num_models - 1; + } + else if (a < 0) { + a = 0; + } + return a; } void NeuralPiAudioProcessor::loadConfig(File configFile)