From 230cebb4b749d88e29b2a873e6ee1c693bb002cf Mon Sep 17 00:00:00 2001 From: Adam Scott Date: Mon, 23 Oct 2023 08:44:57 -0400 Subject: [PATCH] Revert to `proxy_to_pthread=no` as default Currently, `proxy_to_pthread=yes` option as default breaks WebXR support. --- platform/web/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/web/detect.py b/platform/web/detect.py index 887a9e14b97..b0044a80ffa 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, ), ]