fix exiting to game from re-entering menu

This commit is contained in:
dborth 2009-05-28 04:16:41 +00:00
parent 66df5e9c87
commit 44d23d6d43
3 changed files with 28 additions and 16 deletions

View File

@ -548,6 +548,27 @@ void decodepad (int pad)
#endif
}
bool MenuRequested()
{
for(int i=0; i<4; i++)
{
if (
(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
) ||
(userInput[i].wpad.btns_h & WPAD_BUTTON_HOME) ||
(userInput[i].wpad.btns_h & WPAD_CLASSIC_BUTTON_HOME)
)
{
return true;
}
}
return false;
}
/****************************************************************************
* NGCReportButtons
*
@ -569,22 +590,8 @@ void NGCReportButtons ()
* OR "Home" on the wiimote or classic controller
* OR LEFT on classic right analog stick
*/
for(i=0; i<4; i++)
{
if (
(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
) ||
(userInput[i].wpad.btns_h & WPAD_BUTTON_HOME) ||
(userInput[i].wpad.btns_h & WPAD_CLASSIC_BUTTON_HOME)
)
{
if(MenuRequested())
ScreenshotRequested = 1; // go to the menu
}
}
j = (Settings.MultiPlayer5Master == true ? 4 : 2);

View File

@ -33,5 +33,6 @@ void decodepad (int pad);
void NGCReportButtons ();
void SetControllers ();
void SetDefaultButtonMap ();
bool MenuRequested();
#endif

View File

@ -3699,6 +3699,10 @@ MainMenu (int menu)
ShutoffRumble();
#endif
// wait for keys to be depressed
while(MenuRequested())
usleep(THREAD_SLEEP);
CancelAction();
HaltGui();