File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2649,9 +2649,9 @@ static int ProcessGlobalClient(jack_nframes_t nframes, void *arg)
2649
2649
// set a sane low limit
2650
2650
if (dvalue <= 20.0 )
2651
2651
g_transport_bpm = 20 ;
2652
- // >280 BPM over MIDI is unreasonable
2653
- else if (dvalue >= 280 .0 )
2654
- g_transport_bpm = 280 .0 ;
2652
+ // >300 BPM over MIDI is unreasonable
2653
+ else if (dvalue >= 300 .0 )
2654
+ g_transport_bpm = 300 .0 ;
2655
2655
// we are good!
2656
2656
else
2657
2657
g_transport_bpm = dvalue ;
@@ -7271,7 +7271,7 @@ int effects_licensee(int effect_id, char **licensee_ptr)
7271
7271
int effects_set_beats_per_minute (double bpm )
7272
7272
{
7273
7273
int result = SUCCESS ;
7274
- if ((20.0 <= bpm ) && (bpm <= 280 .0 )) {
7274
+ if ((20.0 <= bpm ) && (bpm <= 300 .0 )) {
7275
7275
// Change the current global value and set a flag that it was changed.
7276
7276
g_transport_bpm = bpm ;
7277
7277
g_transport_reset = true;
You can’t perform that action at this time.
0 commit comments