compare: slow base playback 4x (1x = 1600ms/frame, was 400ms)

This commit is contained in:
Michael Pilosov 2026-04-22 14:31:20 -06:00
parent d0b026734a
commit a976ba893a
2 changed files with 2 additions and 2 deletions

View File

@ -485,7 +485,7 @@ async function main() {
const tb = framesOf(panels.b);
return Math.max(ta, tb, 2);
}
function baseMsPerFrame() { return 400 / parseFloat(speedSel.value || '1'); }
function baseMsPerFrame() { return 1600 / parseFloat(speedSel.value || '1'); }
function tick(ts) {
requestAnimationFrame(tick);

View File

@ -111,6 +111,6 @@
</section>
<script src="/static/theme.js?v=11"></script>
<script type="module" src="/static/compare.js?v=2"></script>
<script type="module" src="/static/compare.js?v=3"></script>
</body>
</html>