Restore "Show PSP" in control mapping, that button got lost somehow. However it's still not super useful. + readme updates

This commit is contained in:
Henrik Rydgård
2026-03-02 01:53:13 +01:00
parent 133c36f145
commit e46825d7a0
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -240,6 +240,9 @@ void ControlMappingScreen::CreateSettingsViews(UI::ViewGroup *parent) {
if (!KeyMap::HasBuiltinController(sysName) && KeyMap::GetSeenPads().size()) {
parent->Add(new Choice(km->T("Autoconfigure")))->OnClick.Handle(this, &ControlMappingScreen::OnAutoConfigure);
}
parent->Add(new Choice(km->T("Show PSP")))->OnClick.Add([this](UI::EventParams &params) {
screenManager()->push(new VisualMappingScreen(gamePath_));
});
parent->Add(new CheckBox(&g_Config.bAllowMappingCombos, km->T("Allow combo mappings")));
parent->Add(new CheckBox(&g_Config.bStrictComboOrder, km->T("Strict combo input order")));
}