change default bpm to 60 to fix unexpected behavior

pull/241/head
DJLevel3 2024-04-27 16:34:48 -06:00 zatwierdzone przez James H Ball
rodzic bbdd98d34f
commit 018771797d
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -554,8 +554,8 @@ void OscirenderAudioProcessor::processBlock(juce::AudioBuffer<float>& buffer, ju
int totalNumOutputChannels = getTotalNumOutputChannels();
double sampleRate = getSampleRate();
// MIDI transport info variables (defaults to 120bpm, 4/4 time signature at zero seconds and not playing)
double bpm = 120;
// MIDI transport info variables (defaults to 60bpm, 4/4 time signature at zero seconds and not playing)
double bpm = 60;
double playTimeSeconds = 0;
bool isPlaying = false;
juce::AudioPlayHead::TimeSignature timeSig;