Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
25 additions
and 17 deletions.
- +4 −0 README.md
- +2 −2 hbc/meta.xml
- +4 −4 source/filebrowser.cpp
- +0 −4 source/fileop.cpp
- +14 −6 source/preferences.cpp
- +1 −1 source/snes9xgx.h
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -39,6 +39,10 @@ Wii homebrew is WiiBrew (www.wiibrew.org). | ||
|
|
||
| ## UPDATE HISTORY | ||
|
|
||
| [4.5.1 - February 6, 2021] | ||
|
|
||
| * Fixed SD2SP2 / SD gecko issues (again) | ||
|
|
||
| [4.5.0 - January 31, 2021] | ||
|
|
||
| * Fixed SD2SP2 issues | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -294,10 +294,6 @@ void MountAllFAT() | ||
| #ifdef HW_RVL | ||
| MountFAT(DEVICE_SD, SILENT); | ||
| MountFAT(DEVICE_USB, SILENT); | ||
| #endif | ||
| } | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -20,7 +20,7 @@ | ||
| #include "filelist.h" | ||
|
|
||
| #define APPNAME "Snes9x GX" | ||
| #define APPVERSION "4.5.1" | ||
| #define APPFOLDER "snes9xgx" | ||
| #define PREF_FILE_NAME "settings.xml" | ||
|
|
||