You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-01 16:38:31 +00:00
Remove duplicate ERR_PRINTS macro
This commit is contained in:
@@ -234,7 +234,7 @@ MonoObject *godot_icall_GD_str2var(MonoString *p_str) {
|
||||
Error err = VariantParser::parse(&ss, ret, errs, line);
|
||||
if (err != OK) {
|
||||
String err_str = "Parse error at line " + itos(line) + ": " + errs + ".";
|
||||
ERR_PRINTS(err_str);
|
||||
ERR_PRINT(err_str);
|
||||
ret = err_str;
|
||||
}
|
||||
|
||||
@@ -246,7 +246,7 @@ MonoBoolean godot_icall_GD_type_exists(MonoString *p_type) {
|
||||
}
|
||||
|
||||
void godot_icall_GD_pusherror(MonoString *p_str) {
|
||||
ERR_PRINTS(GDMonoMarshal::mono_string_to_godot(p_str));
|
||||
ERR_PRINT(GDMonoMarshal::mono_string_to_godot(p_str));
|
||||
}
|
||||
|
||||
void godot_icall_GD_pushwarning(MonoString *p_str) {
|
||||
|
||||
Reference in New Issue
Block a user