Skip to content

Commit

Permalink
files
Browse files Browse the repository at this point in the history
  • Loading branch information
jimomulloy committed May 6, 2024
1 parent 4235fc1 commit 73172c1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ private void fillNotes(Set<NoteListElement> nles, CalibrationMap calibrationMap,
// return;
}
} else {
currentTracks.add(track);
// currentTracks.add(track);
}
}
}
Expand Down Expand Up @@ -392,7 +392,7 @@ private void synthesiseNotes(double fromTime, double toTime, NoteTrack track, Ca
">>synthesiseNote A1: " + track.number + ", " + counter + ", " + time + ", " + beatBeforeTime
+ ", " + beatAfterTime);
while (counter > 0 && frame != null && time < (toTime / 1000)) {
int r = (int) (Math.random() * (noteList.size()));
int r = (int) (Math.random() * (double) noteList.size());
newNle = nle.clone();
newNle.startTime = time * 1000;

Expand All @@ -409,7 +409,7 @@ private void synthesiseNotes(double fromTime, double toTime, NoteTrack track, Ca
if (frame != null) {
time = frame.getStartTime();
}
LOG.finer(
LOG.severe(
">>synthesiseNote A2 SHORT " + track.number + ", " + length + ", " + beatRange + ", "
+ endFrame.getStartTime() + ", "
+ newNle.startTime);
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 73172c1

Please sign in to comment.