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.
This commit is contained in:
zeromus 2021-05-27 16:52:05 -04:00
parent d39fa5d3d1
commit 17e3e28d06
1 changed files with 1 additions and 1 deletions

View File

@ -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;