Use PBTN_MOK instead of PBTN_MA3 to confirm loading/saving state

This commit is contained in:
Paul Cercueil 2013-10-08 00:46:49 +02:00 committed by notaz
parent d4bea61c8f
commit 868cc0cc8f

View file

@ -1073,9 +1073,9 @@ static void run_events_ui(unsigned int which)
char tmp[64]; char tmp[64];
int keys, len; int keys, len;
strcpy(tmp, (which & PEV_STATE_LOAD) ? "LOAD STATE?" : "OVERWRITE SAVE?"); strcpy(tmp, (which & PEV_STATE_LOAD) ? "LOAD STATE? " : "OVERWRITE SAVE? ");
len = strlen(tmp); len = strlen(tmp);
nm = in_get_key_name(-1, -PBTN_MA3); nm = in_get_key_name(-1, -PBTN_MOK);
snprintf(tmp + len, sizeof(tmp) - len, "(%s=yes, ", nm); snprintf(tmp + len, sizeof(tmp) - len, "(%s=yes, ", nm);
len = strlen(tmp); len = strlen(tmp);
nm = in_get_key_name(-1, -PBTN_MBACK); nm = in_get_key_name(-1, -PBTN_MBACK);
@ -1084,13 +1084,13 @@ static void run_events_ui(unsigned int which)
plat_status_msg_busy_first(tmp); plat_status_msg_busy_first(tmp);
in_set_config_int(0, IN_CFG_BLOCKING, 1); in_set_config_int(0, IN_CFG_BLOCKING, 1);
while (in_menu_wait_any(NULL, 50) & (PBTN_MA3|PBTN_MBACK)) while (in_menu_wait_any(NULL, 50) & (PBTN_MOK | PBTN_MBACK))
; ;
while ( !((keys = in_menu_wait_any(NULL, 50)) & (PBTN_MA3|PBTN_MBACK)) ) while ( !((keys = in_menu_wait_any(NULL, 50)) & (PBTN_MOK | PBTN_MBACK)))
; ;
if (keys & PBTN_MBACK) if (keys & PBTN_MBACK)
do_it = 0; do_it = 0;
while (in_menu_wait_any(NULL, 50) & (PBTN_MA3|PBTN_MBACK)) while (in_menu_wait_any(NULL, 50) & (PBTN_MOK | PBTN_MBACK))
; ;
in_set_config_int(0, IN_CFG_BLOCKING, 0); in_set_config_int(0, IN_CFG_BLOCKING, 0);
} }