From bf65ffe432637d72831c246dc9fb4ce9db650122 Mon Sep 17 00:00:00 2001 From: Daryl Borth Date: Sun, 31 Jan 2021 09:45:14 -0700 Subject: [PATCH] fix SD2SP2 --- README.md | 6 ++++++ hbc/meta.xml | 4 ++-- source/fileop.cpp | 1 + source/menu.cpp | 4 ++-- source/snes9xgx.h | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7cc72c5..5605ddc 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,12 @@ Wii homebrew is WiiBrew (www.wiibrew.org). ## UPDATE HISTORY +[4.5.0 - January 31, 2021] + +* Fixed SD2SP2 issues +* Changed max game image dimensions to 640x480 to support screenshots +* Fixed .bs files not appearing + [4.4.9 - January 18, 2021] * Compiled with latest devkitPPC/libogc diff --git a/hbc/meta.xml b/hbc/meta.xml index 4d8996c..b22c457 100644 --- a/hbc/meta.xml +++ b/hbc/meta.xml @@ -2,8 +2,8 @@ Snes9x GX Tantric, Zopenko, Askot - 4.4.9 - 20210118 + 4.5.0 + 20210131 Super Nintendo Emulator A port of Snes9x to the Wii. diff --git a/source/fileop.cpp b/source/fileop.cpp index f96a73b..c2f9a02 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -297,6 +297,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 bc1e5cf..82ecf9f 100644 --- a/source/menu.cpp +++ b/source/menu.cpp @@ -3989,9 +3989,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"); diff --git a/source/snes9xgx.h b/source/snes9xgx.h index 19ee03b..423869f 100644 --- a/source/snes9xgx.h +++ b/source/snes9xgx.h @@ -20,7 +20,7 @@ #include "filelist.h" #define APPNAME "Snes9x GX" -#define APPVERSION "4.4.9" +#define APPVERSION "4.5.0" #define APPFOLDER "snes9xgx" #define PREF_FILE_NAME "settings.xml"