summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Scott <ascott.ca@gmail.com>2023-10-23 08:44:57 -0400
committerAdam Scott <ascott.ca@gmail.com>2023-10-23 08:45:45 -0400
commit230cebb4b749d88e29b2a873e6ee1c693bb002cf (patch)
treea1bfd372fe555e7388c14489c913bb73f96f8f5a
parentc21c2706ad33c59295f6a3ac1e128db6fa7cce69 (diff)
downloadredot-engine-230cebb4b749d88e29b2a873e6ee1c693bb002cf.tar.gz
Revert to `proxy_to_pthread=no` as default
Currently, `proxy_to_pthread=yes` option as default breaks WebXR support.
-rw-r--r--platform/web/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/detect.py b/platform/web/detect.py
index 887a9e14b9..b0044a80ff 100644
--- a/platform/web/detect.py
+++ b/platform/web/detect.py
@@ -44,7 +44,7 @@ def get_opts():
BoolVariable(
"proxy_to_pthread",
"Use Emscripten PROXY_TO_PTHREAD option to run the main application code to a separate thread",
- True,
+ False,
),
]