Merge pull request #43864 from vnen/fix-print-utilities

Fix prints and printt functions printing as errors
This commit is contained in:
Rémi Verschelde 2020-11-25 23:07:52 +01:00 committed by GitHub
commit ff790796af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -537,7 +537,7 @@ struct VariantUtilityFunctions {
str += p_args[i]->operator String();
}
print_error(str);
print_line(str);
r_error.error = Callable::CallError::CALL_OK;
}
@ -554,7 +554,7 @@ struct VariantUtilityFunctions {
str += p_args[i]->operator String();
}
print_error(str);
print_line(str);
r_error.error = Callable::CallError::CALL_OK;
}