Mono/C#: Fix GD.PrintErr now showing in the Output panel
This commit is contained in:
parent
1788b22b11
commit
ea75ea50d2
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ void godot_icall_GD_printerr(MonoArray *p_what) {
|
|||
String str;
|
||||
for (int i = 0; i < what.size(); i++)
|
||||
str += what[i].operator String();
|
||||
OS::get_singleton()->printerr("%s\n", str.utf8().get_data());
|
||||
print_error(str);
|
||||
}
|
||||
|
||||
void godot_icall_GD_printraw(MonoArray *p_what) {
|
||||
|
|
Loading…
Reference in a new issue