Skip to content

Commit

Permalink
Change "vcruntime.dll" to "vcruntime140.dll" per HashLink's makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
player-03 authored Feb 4, 2024
1 parent 6fe43ea commit e72db10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lime/tools/HashlinkHelper.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e72db10

Please sign in to comment.