You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Remove duplicate ERR_PRINT macro.
This commit is contained in:
@@ -800,7 +800,7 @@ void GDScriptFunctions::call(Function p_func, const Variant **p_args, int p_arg_
|
||||
}
|
||||
|
||||
String message = *p_args[0];
|
||||
ERR_PRINTS(message);
|
||||
ERR_PRINT(message);
|
||||
r_ret = Variant();
|
||||
} break;
|
||||
case PUSH_WARNING: {
|
||||
@@ -1260,7 +1260,7 @@ void GDScriptFunctions::call(Function p_func, const Variant **p_args, int p_arg_
|
||||
|
||||
if (err != OK) {
|
||||
r_ret = Variant();
|
||||
ERR_PRINTS(vformat("Error parsing JSON at line %s: %s", errl, errs));
|
||||
ERR_PRINT(vformat("Error parsing JSON at line %s: %s", errl, errs));
|
||||
}
|
||||
|
||||
} break;
|
||||
|
||||
Reference in New Issue
Block a user