diff options
author | unthingable <[email protected]> | 2020-09-29 00:29:27 +0200 |
---|---|---|
committer | unthingable <[email protected]> | 2020-09-29 00:29:27 +0200 |
commit | 39f116833d83140da09fa61b1661917a29e92683 (patch) | |
tree | 759f37f73ac64b90febe08069c16cdf03b4fcef0 /desktop/sources/scripts/core | |
parent | e06cd58c3509b01a8eb9814ba986a54120d7b876 (diff) | |
download | Orca-39f116833d83140da09fa61b1661917a29e92683.tar.gz Orca-39f116833d83140da09fa61b1661917a29e92683.zip |
stay synced to MIDI clock while paused
Diffstat (limited to 'desktop/sources/scripts/core')
-rw-r--r-- | desktop/sources/scripts/core/io/midi.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/scripts/core/io/midi.js b/desktop/sources/scripts/core/io/midi.js index 285cebd..7f4875a 100644 --- a/desktop/sources/scripts/core/io/midi.js +++ b/desktop/sources/scripts/core/io/midi.js @@ -129,7 +129,7 @@ function Midi (client) { break case 0xFA: console.log('MIDI', 'Start Received') - client.clock.play() + client.clock.play(false, true) break case 0xFB: console.log('MIDI', 'Continue Received') |