replay speed: increase maximum from 250x to 1000x

This commit is contained in:
Matthias Wirth
2025-07-09 12:07:31 +00:00
parent 3083a991fd
commit 81cca8dd36

View File

@@ -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');