fix path manager support of fully rooted paths (e.g. c:\roms)

This commit is contained in:
zeromus 2017-07-17 09:47:25 -05:00
parent a5ea733269
commit 720cc0d9bb
1 changed files with 3 additions and 0 deletions

View File

@ -134,6 +134,9 @@ namespace BizHawk.Client.Common
return path;
}
if (Path.IsPathRooted(path))
return path;
//handling of initial .. was removed (Path.GetFullPath can handle it)
//handling of file:// or file:\\ was removed (can Path.GetFullPath handle it? not sure)