correction for home menu popping up on game load

This commit is contained in:
dborth 2009-05-30 06:46:33 +00:00
parent dc87d5ec4a
commit e51775b0ad
2 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,6 @@ emulate ()
// since we're entering the menu
ResumeDeviceThread();
ConfigRequested = 1;
SwitchAudioMode(1);
if(SNESROMSize == 0)
@ -239,6 +238,7 @@ emulate ()
SelectFilterMethod();
ConfigRequested = 0;
ScreenshotRequested = 0;
SwitchAudioMode(0);
Settings.MultiPlayer5Master = (GCSettings.Controller == CTRL_PAD4 ? true : false);

View File

@ -321,8 +321,8 @@ copy_to_xfb (u32 arg)
{
if(ScreenshotRequested)
{
TakeScreenshot();
ScreenshotRequested = 0;
TakeScreenshot();
ConfigRequested = 1;
}