Browse Source

Revert to `proxy_to_pthread=no` as default

Currently, `proxy_to_pthread=yes` option as default breaks WebXR
support.
Adam Scott 1 year ago
parent
commit
230cebb4b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/web/detect.py

+ 1 - 1
platform/web/detect.py

@@ -44,7 +44,7 @@ def get_opts():
         BoolVariable(
         BoolVariable(
             "proxy_to_pthread",
             "proxy_to_pthread",
             "Use Emscripten PROXY_TO_PTHREAD option to run the main application code to a separate thread",
             "Use Emscripten PROXY_TO_PTHREAD option to run the main application code to a separate thread",
-            True,
+            False,
         ),
         ),
     ]
     ]