From 81cca8dd36d4a871b085eee74a43bd2ec7fba417 Mon Sep 17 00:00:00 2001 From: Matthias Wirth Date: Wed, 9 Jul 2025 12:07:31 +0000 Subject: [PATCH] replay speed: increase maximum from 250x to 1000x --- html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/script.js b/html/script.js index 54b0421..b0509c2 100644 --- a/html/script.js +++ b/html/script.js @@ -8290,7 +8290,7 @@ function showReplayBar(){ value: Math.pow(replay.speed, 1 / slideBase), step: 0.07, min: Math.pow(1, 1 / slideBase), - max: Math.pow(250, 1 / slideBase), + max: Math.pow(1000, 1 / slideBase), slide: function(event, ui) { replay.speed = Math.pow(ui.value, slideBase).toFixed(1); jQuery('#replaySpeedHint').text('Speed: ' + replay.speed + 'x');