From 0dbe75cf65e28ce44f18ed995c289142bbb725f2 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 20 Jan 2022 19:13:15 -0500 Subject: [PATCH] Fixed relPath check --- BeefLibs/corlib/src/IO/Path.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;