Fix prints and printt functions printing as errors
This commit is contained in:
parent
25ebee328c
commit
40b683f8bb
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue