mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
-Fixed BPM binding issue
This commit is contained in:
parent
1dc61d982a
commit
9bd37a666e
1 changed files with 2 additions and 1 deletions
|
@ -476,7 +476,8 @@ void GenericMIDI::midi(unsigned char* midi)
|
|||
jack->getLogic()->tapTempo();
|
||||
break;
|
||||
case Event::TIME_BPM:
|
||||
jack->getLogic()->setBpm( value );
|
||||
// FIXME: quick-fix for "ZeroOne" type value -> BPM range
|
||||
jack->getLogic()->setBpm( value * 160 + 60 );
|
||||
break;
|
||||
case Event::METRONOME_ACTIVE:
|
||||
jack->getLogic()->metronomeEnable( b->active );
|
||||
|
|
Loading…
Add table
Reference in a new issue