Remove some debug

pull/4311/head^2
Isaac Connor 2025-06-11 15:05:45 -04:00
parent 1997dfcc1c
commit bdeb748894
1 changed files with 0 additions and 4 deletions

View File

@ -436,14 +436,10 @@ function timerFire() {
outputUpdate(currentTimeSecs); // In live mode we basically do nothing but redisplay
} else if (currentTimeSecs + playSecsPerInterval >= maxTimeSecs) {
// beyond the end just stop
console.log("Current time " + currentTimeSecs + " + " + playSecsPerInterval + " >= " + maxTimeSecs + " so stopping");
setSpeed(0);
outputUpdate(currentTimeSecs);
} else if (playSecsPerInterval || (currentTimeSecs==minTimeSecs)) {
console.log("Current time " + currentTimeSecs + " + " + playSecsPerInterval + " + " + timerInterval);
outputUpdate(playSecsPerInterval + currentTimeSecs);
} else {
console.log("Current time " + currentTimeSecs + " + " + playSecsPerInterval);
}
if ((currentSpeed > 0 || liveMode != 0) && !timerObj) {