From 94429d23f0593296bb55509ed5bccdce9f2160ad Mon Sep 17 00:00:00 2001 From: Julian Xhokaxhiu Date: Sat, 1 Feb 2025 18:43:46 +0100 Subject: [PATCH] AppCore: Use user directory instead of documents for the default library path --- AppCore/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppCore/Settings.cs b/AppCore/Settings.cs index a7b2839b..388e3f6f 100644 --- a/AppCore/Settings.cs +++ b/AppCore/Settings.cs @@ -214,7 +214,7 @@ public static Settings UseDefaultSettings() public void SetPathsFromInstallationPath(string pathToFf7Install) { FF7Exe = Sys.Settings.FF7InstalledVersion == FF7Version.Original98 ? Path.Combine(pathToFf7Install, "FF7.exe") : Path.Combine(pathToFf7Install, "ff7_en.exe"); - if (LibraryLocation == string.Empty) LibraryLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), @"7th Heaven"); + if (LibraryLocation == string.Empty) LibraryLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), @"7th Heaven"); LogAndCreateFolderIfNotExists(LibraryLocation);