Skip to content

Commit

Permalink
fix operator key overriding all input always
Browse files Browse the repository at this point in the history
this was partially caused by removal of the insert coin button functionality but this logic also needed a change because it still meant that operator was blocking
  • Loading branch information
poco0317 committed Jan 8, 2023
1 parent b77f1bf commit 482ac7e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Etterna/Globals/StepMania.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1250,11 +1250,9 @@ HandleGlobalInputs(const InputEventPlus& input)
GAMESTATE->Reset();
SCREENMAN->SetNewScreen(
CommonMetrics::OPERATOR_MENU_SCREEN);
return true;
}
}
return true;
return false; // Attract needs to know because it goes to TitleMenu
// on > 1 credit
default:
break;
}
Expand Down

0 comments on commit 482ac7e

Please sign in to comment.