You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
use console.warn instead of Module.printErr: emscripten no longer exports printErr by default, and instead err() should be used in code seen by the optimizer; however, as Godot only runs on the Web (and not in node.js or elsewhere), using console.warn directly is good enough, and will work in all versions if emscripten
This commit is contained in:
@@ -69,7 +69,7 @@ Variant JavaScript::eval(const String &p_code, bool p_use_global_exec_context) {
|
||||
eval_ret = eval(UTF8ToString(CODE));
|
||||
}
|
||||
} catch (e) {
|
||||
Module.printErr(e);
|
||||
console.warn(e);
|
||||
eval_ret = null;
|
||||
}
|
||||
|
||||
@@ -97,7 +97,7 @@ Variant JavaScript::eval(const String &p_code, bool p_use_global_exec_context) {
|
||||
if (array_ptr!==0) {
|
||||
_free(array_ptr)
|
||||
}
|
||||
Module.printErr(e);
|
||||
console.warn(e);
|
||||
// fall through
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user