Merge pull request #36730 from raulsntos/print-null-check

Fix missing null check in Mono Binding of GD.print
This commit is contained in:
Rémi Verschelde 2020-03-02 19:32:54 +01:00 committed by GitHub
commit c9768f15f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ namespace Godot
public static void Print(params object[] what) public static void Print(params object[] what)
{ {
godot_icall_GD_print(Array.ConvertAll(what, x => x.ToString())); godot_icall_GD_print(Array.ConvertAll(what, x => x?.ToString()));
} }
public static void PrintStack() public static void PrintStack()