From d1cd3be6863f3bb65168b85418f37b4856601fac Mon Sep 17 00:00:00 2001 From: Carlos Madrazo Date: Sun, 3 Mar 2019 23:59:31 -0500 Subject: [PATCH] tools fix --- tools/platforms/WindowsPlatform.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/platforms/WindowsPlatform.hx b/tools/platforms/WindowsPlatform.hx index cc631d18b..62cf6b3c9 100644 --- a/tools/platforms/WindowsPlatform.hx +++ b/tools/platforms/WindowsPlatform.hx @@ -650,7 +650,7 @@ class WindowsPlatform extends PlatformTarget if (ndll.path == null || ndll.path == "") { - context.ndlls[i].path = NDLL.getLibraryPath(ndll, "Windows" + (is64 ? "64" : ""), "lib", suffix, project.debug); + context.ndlls[i].path = NDLL.getLibraryPath(ndll, (targetType == "winrt" ? "WinRT":"Windows") + (is64 ? "64" : ""), "lib", suffix, project.debug); } } }