diff --git a/source/preferences.cpp b/source/preferences.cpp index 802dfae..5bbf211 100644 --- a/source/preferences.cpp +++ b/source/preferences.cpp @@ -848,7 +848,9 @@ bool LoadPrefs() FixInvalidSettings(); // attempt to create directories if they don't exist - if(GCSettings.LoadMethod == DEVICE_SD || GCSettings.LoadMethod == DEVICE_USB) { + if((GCSettings.LoadMethod == DEVICE_SD && ChangeInterface(DEVICE_SD, SILENT)) + || (GCSettings.LoadMethod == DEVICE_USB && ChangeInterface(DEVICE_USB, SILENT))) + { char dirPath[MAXPATHLEN]; sprintf(dirPath, "%s%s", pathPrefix[GCSettings.LoadMethod], GCSettings.ScreenshotsFolder); CreateDirectory(dirPath);