Skip to content

Commit

Permalink
Establish sane initial master tempo
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Dec 2, 2024
1 parent 8740dcb commit b6c2538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/deepsymmetry/beatlink/VirtualCdj.java
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ public void setTempoEpsilon(double epsilon) {
/**
* Track the most recently reported master tempo.
*/
private final AtomicLong masterTempo = new AtomicLong();
private final AtomicLong masterTempo = new AtomicLong(Double.doubleToLongBits(0.0));

/**
* Get the current master tempo.
Expand Down

0 comments on commit b6c2538

Please sign in to comment.