aboutsummaryrefslogtreecommitdiff
path: root/platform/android/detect.py
diff options
context:
space:
mode:
authorElliott Sales de Andrade2017-09-25 00:27:32 -0400
committerElliott Sales de Andrade2017-09-25 14:36:30 -0400
commit5be675eb0332ccf660a81df51701146997ef9fcb (patch)
tree22ff68fa1ea7b92a263b46449f306e2e8f12bc4a /platform/android/detect.py
parent45a9a680a3cf54d4f43c46c3ec43a108ee62b834 (diff)
downloadgodot-5be675eb0332ccf660a81df51701146997ef9fcb.tar.gz
godot-5be675eb0332ccf660a81df51701146997ef9fcb.tar.zst
godot-5be675eb0332ccf660a81df51701146997ef9fcb.zip
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r--platform/android/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py
index 67b31e488..0a031fe0b 100644
--- a/platform/android/detect.py
+++ b/platform/android/detect.py
@@ -244,7 +244,7 @@ def configure(env):
env.Append(LIBS=['OpenSLES', 'EGL', 'GLESv3', 'android', 'log', 'z', 'dl'])
# TODO: Move that to opus module's config
- if("module_opus_enabled" in env and env["module_opus_enabled"] != "no"):
+ if 'module_opus_enabled' in env and env['module_opus_enabled']:
if (env["android_arch"] == "armv6" or env["android_arch"] == "armv7"):
env.Append(CFLAGS=["-DOPUS_ARM_OPT"])
env.opus_fixed_point = "yes"