diff options
author | Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com> | 2019-04-20 04:12:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-20 04:12:22 +0200 |
commit | 7be498499b4ebef8761082c5b83f8fbc2f06cd92 (patch) | |
tree | bf24831b89641f96617442fb1307ac4680a2e003 | |
parent | 1120b0b2d3f0df34f24d9ca6b086c192ebc1c5b6 (diff) | |
parent | 25f563c4c854bbfb2a266c070c48d8fd41eb2325 (diff) |
Merge pull request #27820 from ForLoveOfCats/master
Mono: Convert all items to string before printing
-rw-r--r-- | modules/mono/glue/Managed/Files/GD.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/mono/glue/Managed/Files/GD.cs b/modules/mono/glue/Managed/Files/GD.cs index d968f8a78f..5b591646ea 100644 --- a/modules/mono/glue/Managed/Files/GD.cs +++ b/modules/mono/glue/Managed/Files/GD.cs @@ -83,7 +83,7 @@ namespace Godot public static void Print(params object[] what) { - godot_icall_GD_print(what); + godot_icall_GD_print(Array.ConvertAll(what, x => x.ToString())); } public static void PrintStack() @@ -93,22 +93,22 @@ namespace Godot public static void PrintErr(params object[] what) { - godot_icall_GD_printerr(what); + godot_icall_GD_printerr(Array.ConvertAll(what, x => x.ToString())); } public static void PrintRaw(params object[] what) { - godot_icall_GD_printraw(what); + godot_icall_GD_printraw(Array.ConvertAll(what, x => x.ToString())); } public static void PrintS(params object[] what) { - godot_icall_GD_prints(what); + godot_icall_GD_prints(Array.ConvertAll(what, x => x.ToString())); } public static void PrintT(params object[] what) { - godot_icall_GD_printt(what); + godot_icall_GD_printt(Array.ConvertAll(what, x => x.ToString())); } public static double Randf() |