Skip to content

Commit

Permalink
Merge pull request #95 from nowsprinting/fix/support_untiy2019
Browse files Browse the repository at this point in the history
Fix for Unity 2019
  • Loading branch information
nowsprinting authored Aug 23, 2024
2 parents de1bbda + 3802735 commit 0c4d604
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RuntimeInternals/SceneManagerHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ internal static string GetAbsolutePath(string relativePath, string callerFilePat
Debug.LogError($"Can not resolve absolute path. relative: {relativePath}, caller: {callerFilePath}");
return null;
// Note: Do not use Exception (and Assert). Because freezes async tests on UTF v1.3.4, See UUM-25085.
static string ConvertToUnixPathSeparator(string path)

string ConvertToUnixPathSeparator(string path)
{
return path.Replace('\\', '/'); // Normalize path separator
}
Expand Down

0 comments on commit 0c4d604

Please sign in to comment.