From 7f58311cc5c0080764174d342c96d4a14b0662e3 Mon Sep 17 00:00:00 2001 From: lempamo Date: Mon, 30 Oct 2017 22:12:23 -0400 Subject: [PATCH] fixed crash in 98 when downloading something --- Histacom2.Engine/SaveSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ public static void UpgradeFileSystem(string newOS) fsfi = JsonConvert.DeserializeObject(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); } }