diff --git a/README.md b/README.md index 1862fe6..48999c3 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,10 @@ Wii/GameCube. ## UPDATE HISTORY +[3.5.0 - February 6, 2021] + +* Fixed SD2SP2 / SD gecko issues (again) + [3.4.9 - January 31, 2021] * Fixed SD2SP2 issues diff --git a/hbc/meta.xml b/hbc/meta.xml index d7207e1..745e69b 100644 --- a/hbc/meta.xml +++ b/hbc/meta.xml @@ -2,8 +2,8 @@ FCE Ultra GX Tantric, Zopenko, Askot, others - 3.4.9 - 20210131 + 3.5.0 + 20210206 Nintendo Emulator A port of FCE Ultra to the Wii. diff --git a/source/fceugx.h b/source/fceugx.h index c2383b1..f97e7c9 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.9" +#define APPVERSION "3.5.0" #define APPFOLDER "fceugx" #define PREF_FILE_NAME "settings.xml" diff --git a/source/filebrowser.cpp b/source/filebrowser.cpp index d5a2bf6..58e63cf 100644 --- a/source/filebrowser.cpp +++ b/source/filebrowser.cpp @@ -63,12 +63,12 @@ int autoLoadMethod() device = DEVICE_SD; else if(ChangeInterface(DEVICE_USB, SILENT)) device = DEVICE_USB; - else if(ChangeInterface(DEVICE_SD_PORT2, SILENT)) - device = DEVICE_SD_PORT2; else if(ChangeInterface(DEVICE_SD_SLOTA, SILENT)) device = DEVICE_SD_SLOTA; else if(ChangeInterface(DEVICE_SD_SLOTB, SILENT)) device = DEVICE_SD_SLOTB; + else if(ChangeInterface(DEVICE_SD_PORT2, SILENT)) + device = DEVICE_SD_PORT2; else if(ChangeInterface(DEVICE_DVD, SILENT)) device = DEVICE_DVD; else if(ChangeInterface(DEVICE_SMB, SILENT)) @@ -96,12 +96,12 @@ int autoSaveMethod(bool silent) device = DEVICE_SD; else if(ChangeInterface(DEVICE_USB, SILENT)) device = DEVICE_USB; - else if(ChangeInterface(DEVICE_SD_PORT2, SILENT)) - device = DEVICE_SD_PORT2; else if(ChangeInterface(DEVICE_SD_SLOTA, SILENT)) device = DEVICE_SD_SLOTA; else if(ChangeInterface(DEVICE_SD_SLOTB, SILENT)) device = DEVICE_SD_SLOTB; + else if(ChangeInterface(DEVICE_SD_PORT2, SILENT)) + device = DEVICE_SD_PORT2; else if(ChangeInterface(DEVICE_SMB, SILENT)) device = DEVICE_SMB; else if(!silent) diff --git a/source/fileop.cpp b/source/fileop.cpp index b79f9de..ccba180 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -298,10 +298,6 @@ void MountAllFAT() #ifdef HW_RVL MountFAT(DEVICE_SD, SILENT); MountFAT(DEVICE_USB, SILENT); -#else - MountFAT(DEVICE_SD_PORT2, SILENT); - MountFAT(DEVICE_SD_SLOTA, SILENT); - MountFAT(DEVICE_SD_SLOTB, SILENT); #endif } diff --git a/source/preferences.cpp b/source/preferences.cpp index 3d33639..7db82b0 100644 --- a/source/preferences.cpp +++ b/source/preferences.cpp @@ -589,12 +589,6 @@ bool LoadPrefs() sprintf(filepath[2], "usb:/apps/%s", APPFOLDER); sprintf(filepath[3], "sd:/%s", APPFOLDER); sprintf(filepath[4], "usb:/%s", APPFOLDER); -#else - numDevices = 3; - sprintf(filepath[0], "port2:/%s", APPFOLDER); - sprintf(filepath[1], "carda:/%s", APPFOLDER); - sprintf(filepath[2], "cardb:/%s", APPFOLDER); -#endif for(int i=0; i