add back start+A+B+Z trigger to go back to emulator

This commit is contained in:
Daryl Borth 2019-04-19 13:05:24 -06:00
parent 6238b3ee37
commit df7642290b

View File

@ -596,7 +596,11 @@ bool MenuRequested()
for(int i=0; i<4; i++) for(int i=0; i<4; i++)
{ {
if ( if (
(userInput[i].pad.substickX < -70) (userInput[i].pad.substickX < -70) ||
(userInput[i].pad.btns_h & PAD_BUTTON_START &&
userInput[i].pad.btns_h & PAD_BUTTON_A &&
userInput[i].pad.btns_h & PAD_BUTTON_B &&
userInput[i].pad.btns_h & PAD_TRIGGER_Z)
#ifdef HW_RVL #ifdef HW_RVL
|| (userInput[i].wpad->btns_h & WPAD_BUTTON_HOME) || || (userInput[i].wpad->btns_h & WPAD_BUTTON_HOME) ||
(userInput[i].wpad->btns_h & WPAD_CLASSIC_BUTTON_HOME) || (userInput[i].wpad->btns_h & WPAD_CLASSIC_BUTTON_HOME) ||