From 7b2de12de3c96031b1cf6eef37d7b54f804c67bf Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Sat, 5 Oct 2024 23:55:33 +0200 Subject: [PATCH] IsPathRooted -> IsAbsolute This is most likely more correct. .net framework does not have a dedicated method for checking absolute paths, so this was most likely accidentally used instead. --- .../config/PathEntryCollectionExtensions.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs index 79e6c069ae..df2048d2dd 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs @@ -29,14 +29,14 @@ namespace BizHawk.Client.Common globalBase = PathUtils.ExeDirectoryPath + globalBase.Substring(5); } - // rooted paths get returned without change + // absolute paths get returned without change // (this is done after keyword substitution to avoid problems though) - if (Path.IsPathRooted(globalBase)) + if (globalBase.IsAbsolute()) { return globalBase; } - // not-rooted things are relative to exe path + // non-absolute things are relative to exe path globalBase = Path.Combine(PathUtils.ExeDirectoryPath, globalBase); return globalBase; } @@ -121,7 +121,7 @@ namespace BizHawk.Client.Common return path; } - if (Path.IsPathRooted(path)) + if (path.IsAbsolute()) { return path; } @@ -327,7 +327,7 @@ namespace BizHawk.Client.Common private static string ResolveToolsPath(this PathEntryCollection collection, string subPath) { - if (Path.IsPathRooted(subPath) || subPath.StartsWith('%')) return subPath; + if (subPath.IsAbsolute() || subPath.StartsWith('%')) return subPath; var toolsPath = collection[PathEntryCollection.GLOBAL, "Tools"].Path;