feat(guide): update playback speed options (remove 3x, add 8x/16x)

This commit is contained in:
2026-02-11 05:31:49 +01:00
parent 3941f8f23f
commit 0270aa8a2e

View File

@@ -9,8 +9,8 @@ export function useSolver() {
const isPlaying = ref(false);
const isProcessing = ref(false);
const speedIndex = ref(0);
const speeds = [1000, 500, 250, 125];
const speedLabels = ['x1', 'x2', 'x3', 'x4'];
const speeds = [1000, 500, 250, 125, 62];
const speedLabels = ['x1', 'x2', 'x4', 'x8', 'x16'];
const statusText = ref(t('guide.waiting'));
let intervalId = null;