diff --git a/README.md b/README.md index 0a9c44d..1862fe6 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,11 @@ Wii/GameCube. ## UPDATE HISTORY +[3.4.9 - January 31, 2021] + +* Fixed SD2SP2 issues +* Changed max game image dimensions to 640x480 to support screenshots + [3.4.8 - January 18, 2021] * Compiled with latest devkitPPC/libogc diff --git a/hbc/meta.xml b/hbc/meta.xml index 73f86fb..d7207e1 100644 --- a/hbc/meta.xml +++ b/hbc/meta.xml @@ -2,8 +2,8 @@ FCE Ultra GX Tantric, Zopenko, Askot, others - 3.4.8 - 20210118 + 3.4.9 + 20210131 Nintendo Emulator A port of FCE Ultra to the Wii. diff --git a/source/fceugx.h b/source/fceugx.h index 63cf898..c2383b1 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.4.8" +#define APPVERSION "3.4.9" #define APPFOLDER "fceugx" #define PREF_FILE_NAME "settings.xml" diff --git a/source/fileop.cpp b/source/fileop.cpp index 2e776a8..10e83c1 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -301,6 +301,7 @@ void MountAllFAT() #else MountFAT(DEVICE_SD_SLOTA, SILENT); MountFAT(DEVICE_SD_SLOTB, SILENT); + MountFAT(DEVICE_SD_PORT2, SILENT); #endif } diff --git a/source/menu.cpp b/source/menu.cpp index e0d6597..9dfdea9 100644 --- a/source/menu.cpp +++ b/source/menu.cpp @@ -3866,9 +3866,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");