mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add "Use Button X to Confirm" to UI menu
This commit is contained in:
parent
fbdca8b200
commit
08886cd010
1 changed files with 1 additions and 0 deletions
|
@ -782,6 +782,7 @@ void SystemScreen::render() {
|
|||
UICheckBox(GEN_ID, x, y += stride, s->T("Show Debug Statistics"), ALIGN_TOPLEFT, &g_Config.bShowDebugStats);
|
||||
UICheckBox(GEN_ID, x, y += stride, s->T("Show FPS"), ALIGN_TOPLEFT, &g_Config.bShowFPSCounter);
|
||||
UICheckBox(GEN_ID, x, y += stride, s->T("Encrypt Save"), ALIGN_TOPLEFT, &g_Config.bEncryptSave);
|
||||
UICheckBox(GEN_ID, x, y += stride, s->T("Use Button X to Confirm"), ALIGN_TOPLEFT, &g_Config.bButtonPreference);
|
||||
bool tf = g_Config.itimeformat == 1;
|
||||
UICheckBox(GEN_ID, x, y += stride, s->T("12HR Time Format"), ALIGN_TOPLEFT, &tf);
|
||||
g_Config.itimeformat = tf ? 1 : 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue