Skip to content

Commit

Permalink
Fix major Clojure porting mistake
Browse files Browse the repository at this point in the history
This was preventing tempo sync from Ableton Link to DJ Link
  • Loading branch information
brunchboy committed Nov 6, 2023
1 parent 1dbb059 commit 92a8442
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/deepsymmetry/bcj/Carabiner.java
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ private synchronized void checkLinkTempo() throws IOException {
if (Math.abs(tempo - target) > BPM_TOLERANCE) {
sendMessage("bpm " + target);
}
} else {
if (VirtualCdj.getInstance().isTempoMaster() && (tempo > 0.0)) {
VirtualCdj.getInstance().setTempo(tempo);
}
Expand Down

0 comments on commit 92a8442

Please sign in to comment.