fix path manager support of fully rooted paths (e.g. c:\roms)
This commit is contained in:
parent
a5ea733269
commit
720cc0d9bb
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue