diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-28 08:40:39 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-28 08:40:39 +0100 |
commit | 23f3adb7a0256f855b7bb73e0a46ad409af5f205 (patch) | |
tree | 7a0edadc7730e26e72c82597f7350d8ef77fefec /misc/dist | |
parent | 5eeb6e5906ebf303ba695bc26f87b41ab1b85200 (diff) | |
parent | 8fcd54d13edbee1fedfa15bb60b735768e981887 (diff) |
Merge pull request #67815 from Calinou/html5-improve-feature-errors
Improve feature errors in HTML5 for easier understanding
Diffstat (limited to 'misc/dist')
-rw-r--r-- | misc/dist/html/full-size.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/dist/html/full-size.html b/misc/dist/html/full-size.html index 6ae3e5cc73..6710cb1533 100644 --- a/misc/dist/html/full-size.html +++ b/misc/dist/html/full-size.html @@ -215,7 +215,7 @@ const engine = new Engine(GODOT_CONFIG); const missing = Engine.getMissingFeatures(); if (missing.length !== 0) { - const missingMsg = 'Warning!\nThe following features required to run Godot projects on the Web are missing:\n'; + const missingMsg = 'Error\nThe following features required to run Godot projects on the Web are missing:\n'; displayFailureNotice(missingMsg + missing.join('\n')); } else { setStatusMode('indeterminate'); |