Merge pull request #5094 from raven02/patch-24

UI: Toggle to select PSP models (1000, 2000/3000)
This commit is contained in:
Henrik Rydgård 2014-01-13 07:13:13 -08:00
commit 66e88dd39f

View File

@ -313,6 +313,8 @@ void GameSettingsScreen::CreateViews() {
systemSettings->SetSpacing(0);
systemSettings->Add(new ItemHeader(s->T("PSP Settings")));
static const char *models[] = {"PSP-1000" , "PSP-2000/3000"};
systemSettings->Add(new PopupMultiChoice(&g_Config.iPSPModel, s->T("PSP Model"), models, 0, ARRAY_SIZE(models), s, screenManager()));
// TODO: Come up with a way to display a keyboard for mobile users,
// so until then, this is Windows/Desktop only.
#if defined(_WIN32) || defined(USING_QT_UI)