mirror of
https://github.com/dborth/snes9xgx.git
synced 2025-02-02 21:22:43 +01:00
add back L+R+X+Y trigger to go back to emulator
This commit is contained in:
parent
cfda443d78
commit
9bcb97dd10
@ -602,7 +602,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_TRIGGER_L &&
|
||||||
|
userInput[i].pad.btns_h & PAD_TRIGGER_R &&
|
||||||
|
userInput[i].pad.btns_h & PAD_BUTTON_X &&
|
||||||
|
userInput[i].pad.btns_h & PAD_BUTTON_Y)
|
||||||
#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) ||
|
||||||
|
Loading…
x
Reference in New Issue
Block a user