diff options
author | ForLoveOfCats <ForLoveOfCats@vivaldi.net> | 2019-04-08 14:08:35 -0400 |
---|---|---|
committer | ForLoveOfCats <ForLoveOfCats@vivaldi.net> | 2019-04-19 12:59:22 -0400 |
commit | 25f563c4c854bbfb2a266c070c48d8fd41eb2325 (patch) | |
tree | b9d8ff461756af0b4d7098918b9eef7c821dcb74 /modules/mono | |
parent | 444242a0807e9db7ebfce86bf88dad28d18cc1e1 (diff) |
Mono: Convert all items to string before printing
Diffstat (limited to 'modules/mono')
-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() |