iOS: Try a different JIT detection method, thanks Halo-Michael.

Also add an escape route from games list settings without a back button.

See #14240
This commit is contained in:
Henrik Rydgård 2021-03-01 22:40:55 +01:00
parent 203d1364a8
commit 725f054e17
2 changed files with 53 additions and 47 deletions

View file

@ -1567,6 +1567,8 @@ void GridSettingsScreen::CreatePopupContents(UI::ViewGroup *parent) {
items->Add(new Choice(sy->T("Clear Recent Games List")))->OnClick.Handle(this, &GridSettingsScreen::OnRecentClearClick);
}
items->Add(new Choice(di->T("Back")))->OnClick.Handle<UIScreen>(this, &UIScreen::OnBack);
scroll->Add(items);
parent->Add(scroll);
}