From 3cbafc46227fad78d2c8826de77be0de71bc5d48 Mon Sep 17 00:00:00 2001 From: player-03 Date: Sat, 3 Feb 2024 22:21:50 -0500 Subject: [PATCH] Fix filename typo. Closes #1756. --- src/lime/tools/HashlinkHelper.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lime/tools/HashlinkHelper.hx b/src/lime/tools/HashlinkHelper.hx index dc600a2a8..7a96e63b2 100644 --- a/src/lime/tools/HashlinkHelper.hx +++ b/src/lime/tools/HashlinkHelper.hx @@ -44,7 +44,7 @@ class HashlinkHelper { System.copyFile(msvcrPath, Path.combine(applicationDirectory, "msvcr120.dll")); } - var vcruntimePath = Path.combine(hlPath, "vcruntime.dll.dll"); + var vcruntimePath = Path.combine(hlPath, "vcruntime.dll"); if (FileSystem.exists(vcruntimePath)) { System.copyFile(vcruntimePath, Path.combine(applicationDirectory, "vcruntime.dll"));