mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a non-standard call in some example code.
This commit is contained in:
parent
a6585b1ebf
commit
7da76f2a11
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ public:
|
|||
const int numSamples = buffer.getNumSamples();
|
||||
|
||||
// get note duration
|
||||
const int noteDuration = static_cast<int> (std::ceilf (rate * 0.25f * (0.1f + (1.0f - (*speed)))));
|
||||
const int noteDuration = static_cast<int> (std::ceil (rate * 0.25f * (0.1f + (1.0f - (*speed)))));
|
||||
|
||||
MidiMessage msg;
|
||||
int ignore;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue