diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-10-23 19:12:57 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-10-23 19:13:42 +0200 |
commit | 8fcd54d13edbee1fedfa15bb60b735768e981887 (patch) | |
tree | 2cdae1e41632f380354a3449acf03b00de969835 /misc/dist | |
parent | 8b37511364f1345a0636c576a9d31d572b8607ef (diff) |
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'); |