diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-11-05 21:59:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 21:59:31 +0100 |
commit | 13f1d8096032bf572d5071c5bf9f61de0a055fed (patch) | |
tree | ca67db96d764b659f82f454d0819a19cea27447a /platform/web/js | |
parent | 6882890a34528e056f13020798f4a473046990bb (diff) | |
parent | 59e74374c0a6560433c8c3088bdb97fe26e2ea57 (diff) |
Merge pull request #68292 from Faless/web/4.x_editor_fixes
[Web] Fix shutdown, force WebGL2, fix editor run args.
Diffstat (limited to 'platform/web/js')
-rw-r--r-- | platform/web/js/engine/config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/js/engine/config.js b/platform/web/js/engine/config.js index 41be7b2512..4560f12b49 100644 --- a/platform/web/js/engine/config.js +++ b/platform/web/js/engine/config.js @@ -275,7 +275,7 @@ const InternalConfig = function (initConfig) { // eslint-disable-line no-unused- 'print': this.onPrint, 'printErr': this.onPrintError, 'thisProgram': this.executable, - 'noExitRuntime': true, + 'noExitRuntime': false, 'dynamicLibraries': [`${loadPath}.side.wasm`], 'instantiateWasm': function (imports, onSuccess) { function done(result) { |