finalize 3.4.6

This commit is contained in:
Daryl Borth 2020-03-04 17:22:36 -07:00
parent fcf5c5bc1e
commit 2d4136643f
4 changed files with 8 additions and 4 deletions

View File

@ -2,8 +2,8 @@
<app version="1"> <app version="1">
<name>FCE Ultra GX</name> <name>FCE Ultra GX</name>
<coder>Tantric, Zopenko, Askot, others</coder> <coder>Tantric, Zopenko, Askot, others</coder>
<version>3.4.5</version> <version>3.4.6</version>
<release_date>20200217</release_date> <release_date>20200304</release_date>
<short_description>Nintendo Emulator</short_description> <short_description>Nintendo Emulator</short_description>
<long_description>A port of FCE Ultra to the Wii.</long_description> <long_description>A port of FCE Ultra to the Wii.</long_description>
<ahb_access /> <ahb_access />

View File

@ -38,6 +38,11 @@ https://github.com/dborth/fceugx/releases
|0O×øo· UPDATE HISTORY ·oø×O0| |0O×øo· UPDATE HISTORY ·oø×O0|
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨' `¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
[3.4.6 - March 4, 2020]
* Fixed 3rd party controllers (again)
* Fixed GameCube version issues with SD2SP2
[3.4.5 - February 17, 2020] [3.4.5 - February 17, 2020]
* Fixed box art not working on GameCube * Fixed box art not working on GameCube

View File

@ -17,7 +17,7 @@
#include "fceultra/driver.h" #include "fceultra/driver.h"
#define APPNAME "FCE Ultra GX" #define APPNAME "FCE Ultra GX"
#define APPVERSION "3.4.5" #define APPVERSION "3.4.6"
#define APPFOLDER "fceugx" #define APPFOLDER "fceugx"
#define PREF_FILE_NAME "settings.xml" #define PREF_FILE_NAME "settings.xml"

View File

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