diff --git a/lime/tools/helpers/PathHelper.hx b/lime/tools/helpers/PathHelper.hx index 82c1d1146..f7cbaef49 100644 --- a/lime/tools/helpers/PathHelper.hx +++ b/lime/tools/helpers/PathHelper.hx @@ -724,6 +724,12 @@ class PathHelper { } + if (PlatformHelper.hostPlatform == Platform.WINDOWS && path.charAt (1) == ":") { + + path = path.charAt (0).toUpperCase () + ":" + path.substr (2); + + } + return path; }