diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-04-24 10:35:37 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-04-24 10:53:32 +0200 |
commit | ab1d804788daa053d1624dfad87ae024bef9ef02 (patch) | |
tree | d39703daade72bdee040fa2590ac8bc9f1a67ef6 | |
parent | d9d731d1fffa1dd272139f7d1ef9884726fc9de0 (diff) | |
download | server-ab1d804788daa053d1624dfad87ae024bef9ef02.tar.gz |
Speed up replay.
-rw-r--r-- | public/common/replay.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/common/replay.js b/public/common/replay.js index a1e6cfd..24a0d67 100644 --- a/public/common/replay.js +++ b/public/common/replay.js @@ -257,7 +257,7 @@ function on_replay_play_pause() { on_replay_step_next() else on_replay_play_pause() - }, 1000) + }, 500) } else { document.getElementById("replay_stop").classList.add("hide") document.getElementById("replay_play").classList.remove("hide") |