diff options
author | Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com> | 2024-03-17 09:28:04 +0200 |
---|---|---|
committer | Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com> | 2024-03-17 09:28:53 +0200 |
commit | ca60255d8c1d74c84cd8759fdf4724b123adff49 (patch) | |
tree | 8638b2e82982fabf2332be212ff00171396b5903 /platform/web | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-engine-ca60255d8c1d74c84cd8759fdf4724b123adff49.tar.gz |
Fix platform name in the message about unsupported CPU architecture
Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
Diffstat (limited to 'platform/web')
-rw-r--r-- | platform/web/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/detect.py b/platform/web/detect.py index e692c79a20..2d2cc288a1 100644 --- a/platform/web/detect.py +++ b/platform/web/detect.py @@ -86,7 +86,7 @@ def configure(env: "SConsEnvironment"): supported_arches = ["wasm32"] if env["arch"] not in supported_arches: print( - 'Unsupported CPU architecture "%s" for iOS. Supported architectures are: %s.' + 'Unsupported CPU architecture "%s" for Web. Supported architectures are: %s.' % (env["arch"], ", ".join(supported_arches)) ) sys.exit() |