diff --git a/README.md b/README.md index 5605ddc..5ced221 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/hbc/meta.xml b/hbc/meta.xml index b22c457..693f4f7 100644 --- a/hbc/meta.xml +++ b/hbc/meta.xml @@ -2,8 +2,8 @@ Snes9x GX Tantric, Zopenko, Askot - 4.5.0 - 20210131 + 4.5.1 + 20210206 Super Nintendo Emulator A port of Snes9x to the Wii. diff --git a/source/filebrowser.cpp b/source/filebrowser.cpp index 555b4b5..6834a43 100644 --- a/source/filebrowser.cpp +++ b/source/filebrowser.cpp @@ -68,12 +68,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)) @@ -101,12 +101,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 6717b24..45c91af 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -294,10 +294,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 eb07203..522930d 100644 --- a/source/preferences.cpp +++ b/source/preferences.cpp @@ -662,12 +662,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