mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-23 19:19:22 +01:00
-Fix standalone version getting invalid window on start, plugin mode works fine
This commit is contained in:
parent
1b98e95a3d
commit
15d791e87d
@ -2,8 +2,8 @@
|
||||
<app version="1">
|
||||
<name>Snes9x GX</name>
|
||||
<coder>Tantric, Zopenko, Askot</coder>
|
||||
<version>4.3.5</version>
|
||||
<release_date>20160206</release_date>
|
||||
<version>4.3.5-fix1</version>
|
||||
<release_date>20160216</release_date>
|
||||
<short_description>Super Nintendo Emulator</short_description>
|
||||
<long_description>A port of Snes9x to the Wii.</long_description>
|
||||
<ahb_access />
|
||||
|
@ -518,7 +518,11 @@ int main(int argc, char *argv[])
|
||||
// MainMenu(MENU_GAME);
|
||||
if(!autoboot)
|
||||
{
|
||||
MainMenu(MENU_GAME);
|
||||
if(SNESROMSize == 0)
|
||||
MainMenu(MENU_GAMESELECTION);
|
||||
else
|
||||
MainMenu(MENU_GAME);
|
||||
|
||||
ConfigRequested = 0;
|
||||
ScreenshotRequested = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user