Explorar o código

remove console.logs

sschmidTU %!s(int64=3) %!d(string=hai) anos
pai
achega
cf511aec8d
Modificáronse 1 ficheiros con 0 adicións e 3 borrados
  1. 0 3
      src/MusicalScore/Playback/VoicePlaybackData.ts

+ 0 - 3
src/MusicalScore/Playback/VoicePlaybackData.ts

@@ -95,10 +95,7 @@ export class VoicePlaybackData {
             const maxEntryTimestamp: Fraction = entry.enrolledTimestamp.clone();
             maxEntryTimestamp.Add(entry.playbackEntry.Notes[0].Length);
             if (entry.enrolledTimestamp.RealValue < enrolledTimestamp.RealValue) {
-                console.log("entry: " + entry.enrolledTimestamp.RealValue);
-                console.log("enrolled: " + enrolledTimestamp.RealValue);
                 if (!this.rules.PlayAlreadyStartedNotesFromCursorPosition) {
-                    console.log("ratio: " + entry.enrolledTimestamp.RealValue / enrolledTimestamp.RealValue);
                     if (entry.enrolledTimestamp.RealValue / enrolledTimestamp.RealValue < 0.99) {
                         continue; // don't play notes that started before current cursor position
                         // note that we'd ideally check entry < enrolled, but enrolled is imprecise,