diff options
| author | Alex-TIMEHACK <[email protected]> | 2017-11-04 11:09:57 +0000 |
|---|---|---|
| committer | Alex-TIMEHACK <[email protected]> | 2017-11-04 11:09:57 +0000 |
| commit | 4af08fc6e341a45158e23beb13be10aa1a6a3590 (patch) | |
| tree | 46649c5e023276ac5d64d4eee0db7befeb19cff7 /Histacom2.Engine | |
| parent | fd13d9d4f6484a0ad29556d2c1b6b9871066a385 (diff) | |
| download | histacom2-4af08fc6e341a45158e23beb13be10aa1a6a3590.tar.gz histacom2-4af08fc6e341a45158e23beb13be10aa1a6a3590.tar.bz2 histacom2-4af08fc6e341a45158e23beb13be10aa1a6a3590.zip | |
Slight SaveSystem change... read the description
WARNING: FROM THIS POINT ON ALL OLD SAVES ARE OUTDATED AND WILL NOT WORK kthx
Diffstat (limited to 'Histacom2.Engine')
| -rw-r--r-- | Histacom2.Engine/SaveSystem.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Histacom2.Engine/SaveSystem.cs b/Histacom2.Engine/SaveSystem.cs index 0975a2b..a3fd2ef 100644 --- a/Histacom2.Engine/SaveSystem.cs +++ b/Histacom2.Engine/SaveSystem.cs @@ -190,6 +190,7 @@ namespace Histacom2.Engine public static void CreateWindowsDirectory() { + SaveDirectoryInfo(ProfileWindowsDirectory, "Application Data", true, "Application Data", true); SaveDirectoryInfo(ProfileWindowsDirectory, "System", true, "System", true); SaveDirectoryInfo(ProfileWindowsDirectory, "Config", true, "Config", true); SaveDirectoryInfo(ProfileWindowsDirectory, "Cursors", true, "Cursors", true); @@ -337,6 +338,8 @@ namespace Histacom2.Engine // Add Address Book into existance! SaveDirectoryInfo(ProfileProgramsDirectory, "Outlook Express", false, "Outlook Express", true); + SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "Application Data"), "Microsoft", false, "Microsoft", true); + SaveDirectoryInfo(Path.Combine(ProfileWindowsDirectory, "Application Data", "Microsoft"), "Address Book", false, "Address Book", true); CreateWindowsFile(Path.Combine(ProfileProgramsDirectory, "Outlook Express"), "WAB.exe", "addressbook", 8, 512); // There is no "The Microsoft Network" folder! |
