File tree 1 file changed +9
-2
lines changed
src/Etterna/Screen/Others
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -433,8 +433,7 @@ ScreenSelectMusic::Input(const InputEventPlus& input)
433
433
// reset announcer timer
434
434
m_timerIdleComment.GetDeltaTime ();
435
435
436
- // debugging?
437
- // I just like being able to see untransliterated titles occasionally.
436
+ // toggle transliteration
438
437
if (input.DeviceI .device == DEVICE_KEYBOARD &&
439
438
input.DeviceI .button == KEY_F9) {
440
439
if (input.type != IET_FIRST_PRESS)
@@ -445,6 +444,14 @@ ScreenSelectMusic::Input(const InputEventPlus& input)
445
444
return true ;
446
445
}
447
446
447
+ // dont allow touching anything on the transition into view eval/replays
448
+ // the only time this would not be null is if replay is being started
449
+ // it is nulled at the start of this screen
450
+ // if input breaks, this is why (it shouldnt break)
451
+ if (PlayerAI::pScoreData != nullptr ) {
452
+ return false ;
453
+ }
454
+
448
455
if (!IsTransitioning () && m_SelectionState != SelectionState_Finalized) {
449
456
auto bHoldingCtrl =
450
457
INPUTFILTER->IsBeingPressed (
You can’t perform that action at this time.
0 commit comments