Skip to content

Commit

Permalink
hide saving dialog that pops up briefly when returning from a game. bump
Browse files Browse the repository at this point in the history
version.
  • Loading branch information
dborth committed Dec 10, 2016
1 parent 5812be3 commit d92d2ca
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions hbc/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<app version="1">
<name>Visual Boy Advance GX</name>
<coder>Tantric</coder>
<version>2.2.8</version>
<release_date>20120729</release_date>
<version>2.3.5</version>
<release_date>20161210</release_date>
<short_description>GBA/GBC/GB Emulator</short_description>
<long_description>A port of Visual Boy Advance - M to the Wii.</long_description>
<ahb_access />
Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ https://github.com/dborth/vbagx/releases
|0O��o� UPDATE HISTORY �o��O0|
`������� ���������������� ��������������� �������������������� �������������'

[2.3.5 - December 10, 2016]

* Hide saving dialog that pops up briefly when returning from a game

[2.3.4 - September 15, 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 @@ -886,7 +886,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 @@ -927,7 +928,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
2 changes: 1 addition & 1 deletion source/vbagx.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "utils/FreeTypeGX.h"

#define APPNAME "Visual Boy Advance GX"
#define APPVERSION "2.3.4"
#define APPVERSION "2.3.5"
#define APPFOLDER "vbagx"
#define PREF_FILE_NAME "settings.xml"
#define PAL_FILE_NAME "palettes.xml"
Expand Down

0 comments on commit d92d2ca

Please sign in to comment.