Skip to content

Commit

Permalink
reverse mounting order, fix bug storing save/load method
Browse files Browse the repository at this point in the history
  • Loading branch information
dborth committed Feb 2, 2021
1 parent bf65ffe commit 615a358
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions source/filebrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions source/fileop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ void UnmountAllFAT()
fatUnmount("sd:");
fatUnmount("usb:");
#else
fatUnmount("port2:");
fatUnmount("carda:");
fatUnmount("cardb:");
fatUnmount("port2:");
#endif
}

Expand Down Expand Up @@ -295,9 +295,9 @@ void MountAllFAT()
MountFAT(DEVICE_SD, SILENT);
MountFAT(DEVICE_USB, SILENT);
#else
MountFAT(DEVICE_SD_PORT2, SILENT);
MountFAT(DEVICE_SD_SLOTA, SILENT);
MountFAT(DEVICE_SD_SLOTB, SILENT);
MountFAT(DEVICE_SD_PORT2, SILENT);
#endif
}

Expand Down
10 changes: 5 additions & 5 deletions source/preferences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,9 @@ decodePrefsData ()
***************************************************************************/
void FixInvalidSettings()
{
if(GCSettings.LoadMethod > 6)
if(GCSettings.LoadMethod > 7)
GCSettings.LoadMethod = DEVICE_AUTO;
if(GCSettings.SaveMethod > 6)
if(GCSettings.SaveMethod > 7)
GCSettings.SaveMethod = DEVICE_AUTO;
if(!(GCSettings.zoomHor > 0.5 && GCSettings.zoomHor < 1.5))
GCSettings.zoomHor = 1.0;
Expand Down Expand Up @@ -664,9 +664,9 @@ bool LoadPrefs()
sprintf(filepath[4], "usb:/%s", APPFOLDER);
#else
numDevices = 3;
sprintf(filepath[0], "carda:/%s", APPFOLDER);
sprintf(filepath[1], "cardb:/%s", APPFOLDER);
sprintf(filepath[2], "port2:/%s", APPFOLDER);
sprintf(filepath[0], "port2:/%s", APPFOLDER);
sprintf(filepath[1], "carda:/%s", APPFOLDER);
sprintf(filepath[2], "cardb:/%s", APPFOLDER);
#endif

for(int i=0; i<numDevices; i++)
Expand Down

0 comments on commit 615a358

Please sign in to comment.