diff options
| author | lempamo <[email protected]> | 2017-10-30 22:12:23 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-10-30 22:12:23 -0400 |
| commit | 7f58311cc5c0080764174d342c96d4a14b0662e3 (patch) | |
| tree | 1c85ca5a9464a69088296bc82c772ea175f46e33 /Histacom2.Engine/SaveSystem.cs | |
| parent | 98ef2526d6e336574809f59e197daf597bb753ee (diff) | |
| download | histacom2-7f58311cc5c0080764174d342c96d4a14b0662e3.tar.gz histacom2-7f58311cc5c0080764174d342c96d4a14b0662e3.tar.bz2 histacom2-7f58311cc5c0080764174d342c96d4a14b0662e3.zip | |
fixed crash in 98 when downloading something
Diffstat (limited to 'Histacom2.Engine/SaveSystem.cs')
| -rw-r--r-- | Histacom2.Engine/SaveSystem.cs | 2 |
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); } } |
