diff --git a/hbc/meta.xml b/hbc/meta.xml index 426d5e0..6f7c114 100644 --- a/hbc/meta.xml +++ b/hbc/meta.xml @@ -1,9 +1,9 @@ FCE Ultra GX - Tantric & Zopenko - 3.3.7 - 20130112 + Tantric, Zopenko, Askot, others + 3.3.9 + 20161210 Nintendo Emulator A port of FCE Ultra to the Wii. diff --git a/readme.txt b/readme.txt index 48d938f..51bb4dc 100644 --- a/readme.txt +++ b/readme.txt @@ -37,6 +37,11 @@ https://github.com/dborth/fceugx/releases |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] * Removed some unused and redundant palettes (thanks to Burnt Lasagna), new naming convention is: diff --git a/source/fceugx.h b/source/fceugx.h index 71bf342..e170b60 100644 --- a/source/fceugx.h +++ b/source/fceugx.h @@ -17,7 +17,7 @@ #include "fceultra/driver.h" #define APPNAME "FCE Ultra GX" -#define APPVERSION "3.3.8" +#define APPVERSION "3.3.9" #define APPFOLDER "fceugx" #define PREF_FILE_NAME "settings.xml" diff --git a/source/fileop.cpp b/source/fileop.cpp index b9f95e0..9dac7e9 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -877,7 +877,8 @@ SaveFile (char * buffer, char *filepath, size_t datasize, bool silent) // halt parsing HaltParseThread(); - ShowAction("Saving..."); + if(!silent) + ShowAction("Saving..."); while(!written && retry == 1) { @@ -917,8 +918,8 @@ SaveFile (char * buffer, char *filepath, size_t datasize, bool silent) // go back to checking if devices were inserted/removed ResumeDeviceThread(); - - CancelAction(); + if(!silent) + CancelAction(); return written; }