summaryrefslogtreecommitdiffstats
path: root/platform/web/detect.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform/web/detect.py')
-rw-r--r--platform/web/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/web/detect.py b/platform/web/detect.py
index 735e2eaf4f..1847cf6a6c 100644
--- a/platform/web/detect.py
+++ b/platform/web/detect.py
@@ -201,7 +201,7 @@ def configure(env: "SConsEnvironment"):
# Minimum emscripten requirements.
if cc_semver < (3, 1, 62):
- print_error("The minimum emscripten version to build Godot is 3.1.62, detected: %s.%s.%s" % cc_semver)
+ print_error("The minimum emscripten version to build Redot is 3.1.62, detected: %s.%s.%s" % cc_semver)
sys.exit(255)
env.Prepend(CPPPATH=["#platform/web"])
@@ -268,7 +268,7 @@ def configure(env: "SConsEnvironment"):
env.Append(LINKFLAGS=["-sENVIRONMENT=web,worker"])
# Wrap the JavaScript support code around a closure named Godot.
- env.Append(LINKFLAGS=["-sMODULARIZE=1", "-sEXPORT_NAME='Godot'"])
+ env.Append(LINKFLAGS=["-sMODULARIZE=1", "-sEXPORT_NAME='Redot'"])
# Force long jump mode to 'wasm'
env.Append(CCFLAGS=["-sSUPPORT_LONGJMP='wasm'"])