From 17e3e28d06372f9403ef7c00895e9099f64a1d16 Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 27 May 2021 16:52:05 -0400 Subject: [PATCH] Fix a bug in PathExtensions IsAbsolute. Fixes #2747 This code should not exist here, anyway. For reasons just like this. Need to find framework method for it. --- src/BizHawk.Common/Extensions/PathExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Common/Extensions/PathExtensions.cs b/src/BizHawk.Common/Extensions/PathExtensions.cs index 685cb0a7d7..b1acef44ee 100644 --- a/src/BizHawk.Common/Extensions/PathExtensions.cs +++ b/src/BizHawk.Common/Extensions/PathExtensions.cs @@ -60,7 +60,7 @@ namespace BizHawk.Common.PathExtensions return false; if (path[2] == '\\') { - if (path[1] != '\\') + if (path[1] != ':') return false; bool driveLetter = ('A'.RangeTo('Z').Contains(path[0]) || 'a'.RangeTo('z').Contains(path[0])); return driveLetter;