Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit bbd32d6

Browse files
committed
renamed a path function
1 parent b38cbcd commit bbd32d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Interop/ConfigControl.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public static Config[] Load()
6464
// (calculate it based on installation being standalone or portable)
6565
if (IsStandardConfig && string.IsNullOrEmpty(_SMDirectoryStr))
6666
{
67-
SMDirs.Add(Paths.GetConfigsFolderPath());
67+
SMDirs.Add(Paths.GetConfigsDirectory());
6868
}
6969

7070
foreach (var dir in SMDirectoriesSplitted)
@@ -79,7 +79,7 @@ public static Config[] Load()
7979
// Extra assurance for the program to always load a proper config
8080
if (IsStandardConfig && SMDirs.Count == 0)
8181
{
82-
SMDirs.Add(Paths.GetConfigsFolderPath());
82+
SMDirs.Add(Paths.GetConfigsDirectory());
8383
}
8484

8585
int _OptimizationLevel = 2, _VerboseLevel = 1;

0 commit comments

Comments
 (0)