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 6a802c2 commit 62f4819Copy full SHA for 62f4819
1 file changed
source/funkin/menus/FreeplayState.hx
@@ -461,7 +461,14 @@ class FreeplayState extends MusicBeatState
461
curSelected = event.value;
462
if (event.playMenuSFX) CoolUtil.playMenuSFX(SCROLL, 0.7);
463
464
+ var prevDiff = curDifficulties[curDifficulty], prevVariant = curDiffMetaKeys[curDifficulty];
465
updateCurDifficulties();
466
+
467
+ for (i => diff in curDifficulties) if (diff == prevDiff && curDiffMetaKeys[i] == prevVariant) {
468
+ curDifficulty = i;
469
+ break;
470
+ }
471
472
changeDiff(0, true);
473
474
#if PRELOAD_ALL
0 commit comments