diff --git a/src/composables/useSolver.js b/src/composables/useSolver.js index bc016f9..e4c0ef3 100644 --- a/src/composables/useSolver.js +++ b/src/composables/useSolver.js @@ -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;