summaryrefslogtreecommitdiffstats
path: root/data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'data.cpp')
-rw-r--r--data.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/data.cpp b/data.cpp
index 4bf8637a6..7be0b03e8 100644
--- a/data.cpp
+++ b/data.cpp
@@ -279,9 +279,10 @@ int DataManager::LoadValues(const string filename)
error:
fclose(in);
string current = GetCurrentStoragePath();
- string settings = GetSettingsStoragePath();
- if (current != settings && !PartitionManager.Mount_By_Path(current, false)) {
- SetValue("tw_storage_path", settings);
+ TWPartition* Part = PartitionManager.Find_Partition_By_Path(current);
+ if (current != Part->Storage_Path && Part->Mount(false)) {
+ LOGINFO("LoadValues setting storage path to '%s'\n", Part->Storage_Path.c_str());
+ SetValue("tw_storage_path", Part->Storage_Path);
} else {
SetBackupFolder();
}