From 98c8411ee044d904e9cf2bb4e36e9394355448ce Mon Sep 17 00:00:00 2001 From: ShakeFlower Date: Sun, 2 Mar 2025 15:39:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=87=8F=E5=B0=91=5F=5Freplay=5FgetTimeout?= =?UTF-8?q?=E6=97=B6=E9=95=BF=EF=BC=8C=E4=BB=8E=E8=80=8C=E5=87=8F=E5=B0=91?= =?UTF-8?q?=E6=85=A2=E6=94=BE=E5=BD=95=E5=83=8F=E7=82=B8=E5=BD=95=E5=83=8F?= =?UTF-8?q?=E7=9A=84=E5=87=A0=E7=8E=87=EF=BC=8C=E4=B8=8D=E7=A1=AE=E5=AE=9A?= =?UTF-8?q?=E5=BD=B1=E5=93=8D=EF=BC=8C=E6=9C=89=E5=BE=85=E8=A7=82=E5=AF=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/control.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/control.js b/libs/control.js index d4914816..0297ecff 100644 --- a/libs/control.js +++ b/libs/control.js @@ -1834,7 +1834,7 @@ control.prototype._replay_drawProgress = function () { control.prototype.__replay_getTimeout = function () { if (core.status.replay.speed == 24) return 0; - return 750 / Math.max(1, core.status.replay.speed); + return 100 / Math.max(1, core.status.replay.speed); } control.prototype._replayAction_move = function (action) {