mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-23 11:09:22 +01:00
Hide saving dialog that pops up briefly when returning from a game
This commit is contained in:
parent
10a881ac05
commit
97e637fed8
@ -32,6 +32,10 @@ Wii homebrew is WiiBrew (www.wiibrew.org).
|
||||
| UPDATE HISTORY |
|
||||
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
|
||||
|
||||
[4.3.7 - December 9, 2016]
|
||||
|
||||
* Hide saving dialog that pops up briefly when returning from a game
|
||||
|
||||
[4.3.6 - September 12, 2016]
|
||||
|
||||
* Added the delete save file (SRAM / Snapshot) option
|
||||
|
@ -878,7 +878,8 @@ SaveFile (char * buffer, char *filepath, size_t datasize, bool silent)
|
||||
// halt parsing
|
||||
HaltParseThread();
|
||||
|
||||
ShowAction("Saving...");
|
||||
if(!silent)
|
||||
ShowAction("Saving...");
|
||||
|
||||
while(!written && retry == 1)
|
||||
{
|
||||
@ -919,7 +920,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;
|
||||
}
|
||||
|
||||
|
@ -28,7 +28,7 @@ char wiiIP[16] = { 0 };
|
||||
|
||||
#ifdef HW_RVL
|
||||
static int netHalt = 0;
|
||||
static bool updateChecked = true; // true if checked for app update
|
||||
static bool updateChecked = false; // true if checked for app update
|
||||
static char updateURL[128]; // URL of app update
|
||||
bool updateFound = false; // true if an app update was found
|
||||
|
||||
@ -90,7 +90,7 @@ void UpdateCheck()
|
||||
if(tmp)
|
||||
{
|
||||
snprintf(updateURL, 128, "%s", tmp);
|
||||
updateFound = false;
|
||||
updateFound = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "filelist.h"
|
||||
|
||||
#define APPNAME "Snes9x GX"
|
||||
#define APPVERSION "4.3.6"
|
||||
#define APPVERSION "4.3.7"
|
||||
#define APPFOLDER "snes9xgx"
|
||||
#define PREF_FILE_NAME "settings.xml"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user