mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-09 23:29:25 +01:00
don't show saving dialog briefly when returning from a game. bump
version
This commit is contained in:
parent
34b656ca4b
commit
390981e48f
@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<app version="1">
|
<app version="1">
|
||||||
<name>FCE Ultra GX</name>
|
<name>FCE Ultra GX</name>
|
||||||
<coder>Tantric & Zopenko</coder>
|
<coder>Tantric, Zopenko, Askot, others</coder>
|
||||||
<version>3.3.7</version>
|
<version>3.3.9</version>
|
||||||
<release_date>20130112</release_date>
|
<release_date>20161210</release_date>
|
||||||
<short_description>Nintendo Emulator</short_description>
|
<short_description>Nintendo Emulator</short_description>
|
||||||
<long_description>A port of FCE Ultra to the Wii.</long_description>
|
<long_description>A port of FCE Ultra to the Wii.</long_description>
|
||||||
<ahb_access />
|
<ahb_access />
|
||||||
|
@ -37,6 +37,11 @@ https://github.com/dborth/fceugx/releases
|
|||||||
|0O×øo· UPDATE HISTORY ·oø×O0|
|
|0O×øo· UPDATE HISTORY ·oø×O0|
|
||||||
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
||||||
|
|
||||||
|
[3.3.9 - December 10, 2016]
|
||||||
|
|
||||||
|
* Hide saving dialog that pops up briefly when returning from a game
|
||||||
|
* don't ignore buttons when zapper is enabled. prevented "Gotcha! The Sport!" from working (thanks liuhb86!)
|
||||||
|
|
||||||
[3.3.8 - May 14, 2016]
|
[3.3.8 - May 14, 2016]
|
||||||
|
|
||||||
* Removed some unused and redundant palettes (thanks to Burnt Lasagna), new naming convention is:
|
* Removed some unused and redundant palettes (thanks to Burnt Lasagna), new naming convention is:
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#include "fceultra/driver.h"
|
#include "fceultra/driver.h"
|
||||||
|
|
||||||
#define APPNAME "FCE Ultra GX"
|
#define APPNAME "FCE Ultra GX"
|
||||||
#define APPVERSION "3.3.8"
|
#define APPVERSION "3.3.9"
|
||||||
#define APPFOLDER "fceugx"
|
#define APPFOLDER "fceugx"
|
||||||
#define PREF_FILE_NAME "settings.xml"
|
#define PREF_FILE_NAME "settings.xml"
|
||||||
|
|
||||||
|
@ -877,6 +877,7 @@ SaveFile (char * buffer, char *filepath, size_t datasize, bool silent)
|
|||||||
// halt parsing
|
// halt parsing
|
||||||
HaltParseThread();
|
HaltParseThread();
|
||||||
|
|
||||||
|
if(!silent)
|
||||||
ShowAction("Saving...");
|
ShowAction("Saving...");
|
||||||
|
|
||||||
while(!written && retry == 1)
|
while(!written && retry == 1)
|
||||||
@ -917,7 +918,7 @@ SaveFile (char * buffer, char *filepath, size_t datasize, bool silent)
|
|||||||
|
|
||||||
// go back to checking if devices were inserted/removed
|
// go back to checking if devices were inserted/removed
|
||||||
ResumeDeviceThread();
|
ResumeDeviceThread();
|
||||||
|
if(!silent)
|
||||||
CancelAction();
|
CancelAction();
|
||||||
return written;
|
return written;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user