Skip to content

Commit

Permalink
Hide saving dialog that pops up briefly when returning from a game
Browse files Browse the repository at this point in the history
  • Loading branch information
dborth committed Dec 9, 2016
1 parent 10a881a commit 97e637f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions source/fileop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down Expand Up @@ -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;
}

Expand Down
4 changes: 2 additions & 2 deletions source/networkop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -90,7 +90,7 @@ void UpdateCheck()
if(tmp)
{
snprintf(updateURL, 128, "%s", tmp);
updateFound = false;
updateFound = true;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion source/snes9xgx.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 97e637f

Please sign in to comment.