Skip to content

Commit 94429d2

Browse files
AppCore: Use user directory instead of documents for the default library path
1 parent 463a5b0 commit 94429d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AppCore/Settings.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public static Settings UseDefaultSettings()
214214
public void SetPathsFromInstallationPath(string pathToFf7Install)
215215
{
216216
FF7Exe = Sys.Settings.FF7InstalledVersion == FF7Version.Original98 ? Path.Combine(pathToFf7Install, "FF7.exe") : Path.Combine(pathToFf7Install, "ff7_en.exe");
217-
if (LibraryLocation == string.Empty) LibraryLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), @"7th Heaven");
217+
if (LibraryLocation == string.Empty) LibraryLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), @"7th Heaven");
218218

219219
LogAndCreateFolderIfNotExists(LibraryLocation);
220220

0 commit comments

Comments
 (0)