Use Normalize instead of MakeAbsolute

Ugh doing this while headhurts much
This commit is contained in:
Marek Roszko 2021-06-21 18:07:07 -04:00
parent 5184908dd1
commit c72914c43c
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ wxString PATHS::GetOSXKicadDataDir()
wxString PATHS::getWindowsKiCadRoot()
{
wxFileName root( Pgm().GetExecutablePath() + "/../" );
root.MakeAbsolute();
root.Normalize();
return root.GetPathWithSep();
}