From e72db10900edc8f71ef4f89efab9900e70334bf4 Mon Sep 17 00:00:00 2001 From: player-03 Date: Sun, 4 Feb 2024 18:00:43 -0500 Subject: [PATCH] Change "vcruntime.dll" to "vcruntime140.dll" per HashLink's makefile. --- src/lime/tools/HashlinkHelper.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lime/tools/HashlinkHelper.hx b/src/lime/tools/HashlinkHelper.hx index 7a96e63b2..82085f48f 100644 --- a/src/lime/tools/HashlinkHelper.hx +++ b/src/lime/tools/HashlinkHelper.hx @@ -44,10 +44,10 @@ class HashlinkHelper { System.copyFile(msvcrPath, Path.combine(applicationDirectory, "msvcr120.dll")); } - var vcruntimePath = Path.combine(hlPath, "vcruntime.dll"); + var vcruntimePath = Path.combine(hlPath, "vcruntime140.dll"); if (FileSystem.exists(vcruntimePath)) { - System.copyFile(vcruntimePath, Path.combine(applicationDirectory, "vcruntime.dll")); + System.copyFile(vcruntimePath, Path.combine(applicationDirectory, "vcruntime140.dll")); } } else if (platform == MAC || platform == IOS)