diff --git a/BeefLibs/corlib/src/IO/Path.bf b/BeefLibs/corlib/src/IO/Path.bf index 00a69c41..698bd682 100644 --- a/BeefLibs/corlib/src/IO/Path.bf +++ b/BeefLibs/corlib/src/IO/Path.bf @@ -467,7 +467,7 @@ namespace System.IO } if ((relPath.Length > 1) && - (relPath[0] == '/') || (relPath[0] == '\\')) + ((relPath[0] == '/') || (relPath[0] == '\\'))) { outAbsPath.Append(relPath); return;