fix SD2SP2

This commit is contained in:
Daryl Borth 2021-01-31 09:45:26 -07:00
parent c85985bbb5
commit 99cd8862bf
5 changed files with 11 additions and 5 deletions

View File

@ -38,6 +38,11 @@ With it you can play GBA/Game Boy Color/Game Boy games on your Wii/GameCube.
## UPDATE HISTORY
[2.4.3 - January 31, 2021]
* Fixed SD2SP2 issues
* Changed max game image dimensions to 640x480 to support screenshots
[2.4.2 - January 18, 2021]
* Compiled with latest devkitPPC/libogc

View File

@ -2,8 +2,8 @@
<app version="1">
<name>Visual Boy Advance GX</name>
<coder>Tantric</coder>
<version>2.4.2</version>
<release_date>20210118</release_date>
<version>2.4.3</version>
<release_date>20210131</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 />

View File

@ -298,6 +298,7 @@ void MountAllFAT()
#else
MountFAT(DEVICE_SD_SLOTA, SILENT);
MountFAT(DEVICE_SD_SLOTB, SILENT);
MountFAT(DEVICE_SD_PORT2, SILENT);
#endif
}

View File

@ -3782,9 +3782,9 @@ static int MenuSettingsFile()
#endif
// correct load/save methods out of bounds
if(GCSettings.LoadMethod > 6)
if(GCSettings.LoadMethod > 7)
GCSettings.LoadMethod = 0;
if(GCSettings.SaveMethod > 6)
if(GCSettings.SaveMethod > 7)
GCSettings.SaveMethod = 0;
if (GCSettings.LoadMethod == DEVICE_AUTO) sprintf (options.value[0],"Auto Detect");

View File

@ -17,7 +17,7 @@
#include "utils/FreeTypeGX.h"
#define APPNAME "Visual Boy Advance GX"
#define APPVERSION "2.4.2"
#define APPVERSION "2.4.3"
#define APPFOLDER "vbagx"
#define PREF_FILE_NAME "settings.xml"
#define PAL_FILE_NAME "palettes.xml"