Skip to content

Commit

Permalink
Update LinuxPlatform.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
mcagabe19 authored Nov 11, 2024
1 parent 5fae4b9 commit 205f3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/platforms/LinuxPlatform.hx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class LinuxPlatform extends PlatformTarget
}
else
{
ProjectHelper.copyLibrary(project, ndll, "Linux" + (( System.hostArchitecture == ARMV7 || System.hostArchitecture == ARM64)?"Arm":"") + (is64 ? "64" : ""), "",
ProjectHelper.copyLibrary(project, ndll, "Linux" + (isArm ? "Arm" : "") + (is64 ? "64" : ""), "",
(ndll.haxelib != null
&& (ndll.haxelib.name == "hxcpp" || ndll.haxelib.name == "hxlibc")) ? ".dll" : ".ndll", applicationDirectory,
project.debug, targetSuffix);
Expand Down

0 comments on commit 205f3a5

Please sign in to comment.