We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6583928 commit b39f0d9Copy full SHA for b39f0d9
1 file changed
source/funkin/menus/FreeplayState.hx
@@ -375,6 +375,13 @@ class FreeplayState extends MusicBeatState
375
updateCurSongMeta();
376
updateScore();
377
378
+ #if PRELOAD_ALL
379
+ if (songs[curSelected] != curSong) {
380
+ autoplayElapsed = 0;
381
+ songInstPlaying = false;
382
+ }
383
+ #end
384
+
385
if (curSong.difficulties.length > 1)
386
diffText.text = '< ${curSong.difficulties[curDifficulty].toUpperCase()} >';
387
else
@@ -422,13 +429,6 @@ class FreeplayState extends MusicBeatState
422
429
423
430
424
431
425
- #if PRELOAD_ALL
426
- if (songs[curSelected] != curSong) {
427
- autoplayElapsed = 0;
428
- songInstPlaying = false;
- }
- #end
-
432
var key = "[TAB] "; // TODO: make this configurable
433
434
if (bothEnabled) {
0 commit comments