diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-04-30 13:50:04 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-04-30 16:26:42 +0300 |
commit | 986d297ed3c8e6a98c2cec2893f1e040f175738a (patch) | |
tree | ed2aba9cd9e4cb377d8e8eeb132aa65db1ec2e3e /drivers | |
parent | 64520fe6741d8ec3c55e0c9618d3fadcda949f63 (diff) | |
download | redot-engine-986d297ed3c8e6a98c2cec2893f1e040f175738a.tar.gz |
Fix arm64/Windows build.
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/png/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/png/SCsub b/drivers/png/SCsub index dd4777a19b..e38f3c4760 100644 --- a/drivers/png/SCsub +++ b/drivers/png/SCsub @@ -39,7 +39,7 @@ if env["builtin_libpng"]: if env["arch"].startswith("arm"): if env.msvc: # Can't compile assembly files with MSVC. - env_thirdparty.Append(CPPDEFINES=[("PNG_ARM_NEON_OPT"), 0]) + env_thirdparty.Append(CPPDEFINES=[("PNG_ARM_NEON_OPT", 0)]) else: env_neon = env_thirdparty.Clone() if "S_compiler" in env: |