Browse Source

Fetch parameter value differently

master
xenakios 6 years ago
parent
commit
f67d8cc319
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Source/PluginProcessor.cpp

+ 1
- 1
Source/PluginProcessor.cpp View File

@@ -842,7 +842,7 @@ void PaulstretchpluginAudioProcessor::timerCallback(int id)
{
if (id == 1)
{
bool capture = getParameter(cpi_capture_enabled);
bool capture = *getBoolParameter(cpi_capture_enabled);
if (capture == false && m_max_reclen != *getFloatParameter(cpi_max_capture_len))
{
m_max_reclen = *getFloatParameter(cpi_max_capture_len);


Loading…
Cancel
Save