From 04c9802615343201cae1d626692d57b32f984ed5 Mon Sep 17 00:00:00 2001 From: yuuki <> Date: Tue, 11 Feb 2025 14:30:12 +0900 Subject: [PATCH] =?UTF-8?q?=E9=AB=98=E9=80=9F=E5=8C=96=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/src/js/songselect.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/src/js/songselect.js b/public/src/js/songselect.js index 2722e50..c879438 100644 --- a/public/src/js/songselect.js +++ b/public/src/js/songselect.js @@ -129,7 +129,7 @@ class SongSelect{ song.subtitlePrepared = subtitle ? fuzzysort.prepare(this.search.normalizeString(subtitle)) : null setTimeout(() => { this.songs.push(this.addSong(song)) - }, songIndex * 50); + }, songIndex); songIndex++; } setTimeout(() => { @@ -150,7 +150,7 @@ class SongSelect{ if (titlesort === "true") { this.songs.sort((a, b) => a.title.localeCompare(b.title)); } - }, songIndex * 50 + 50); + }, songIndex + 50); if(assets.songs.length){ this.songs.push({ title: strings.back,