Skip to content

Commit

Permalink
GHA Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ellapollack committed Jul 5, 2020
1 parent 6684f0b commit 5f1d433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PluginProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class RepitchAudioProcessor : public AudioProcessor
Voice voices[128];

static float pow10VRF(float start, float end, float value)
{ return pow(10.,jmap(value, log10(start), log10(end))); }
{ return pow(10.,jmap(double(value), log10(start), log10(end))); }

static float log10VRF(float start, float end, float value)
{ return jmap(log10(value), log10(start), log10(end), 0.0f, 1.0f); }
Expand Down

0 comments on commit 5f1d433

Please sign in to comment.