aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-10-30 22:12:23 -0400
committerlempamo <[email protected]>2017-10-30 22:12:23 -0400
commit7f58311cc5c0080764174d342c96d4a14b0662e3 (patch)
tree1c85ca5a9464a69088296bc82c772ea175f46e33 /Histacom2.Engine
parent98ef2526d6e336574809f59e197daf597bb753ee (diff)
downloadhistacom2-7f58311cc5c0080764174d342c96d4a14b0662e3.tar.gz
histacom2-7f58311cc5c0080764174d342c96d4a14b0662e3.tar.bz2
histacom2-7f58311cc5c0080764174d342c96d4a14b0662e3.zip
fixed crash in 98 when downloading something
Diffstat (limited to 'Histacom2.Engine')
-rw-r--r--Histacom2.Engine/SaveSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Histacom2.Engine/SaveSystem.cs b/Histacom2.Engine/SaveSystem.cs
index 55e9798..11fbe88 100644
--- a/Histacom2.Engine/SaveSystem.cs
+++ b/Histacom2.Engine/SaveSystem.cs
@@ -360,7 +360,7 @@ namespace Histacom2.Engine
fsfi = JsonConvert.DeserializeObject<FileSystemFolderInfo>(File.ReadAllText(Path.Combine(ProfileWindowsDirectory, "_data.info")));
Directory.Delete(Path.Combine(ProfileWindowsDirectory, "Desktop"), true);
- Directory.CreateDirectory(Path.Combine(ProfileWindowsDirectory, "Desktop"));
+ SaveDirectoryInfo(ProfileWindowsDirectory, "Desktop", true, "Desktop", true);
}
}