diff options
| author | Rémi Verschelde | 2017-01-14 18:03:38 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2017-03-18 21:14:33 +0100 |
| commit | dbf013757658ad48bb61242ed69ad4145a946863 (patch) | |
| tree | 578688f4bbdd6affa4239558c9251eea26a61611 /modules/gdscript/gd_functions.cpp | |
| parent | 75bf6a997875cab08866eb9e8ee6c75923fe8c96 (diff) | |
| download | godot-dbf013757658ad48bb61242ed69ad4145a946863.tar.gz godot-dbf013757658ad48bb61242ed69ad4145a946863.tar.zst godot-dbf013757658ad48bb61242ed69ad4145a946863.zip | |
Diffstat (limited to 'modules/gdscript/gd_functions.cpp')
| -rw-r--r-- | modules/gdscript/gd_functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_functions.cpp b/modules/gdscript/gd_functions.cpp index 62699976b..9d3a84d02 100644 --- a/modules/gdscript/gd_functions.cpp +++ b/modules/gdscript/gd_functions.cpp @@ -544,7 +544,7 @@ void GDFunctions::call(Function p_func,const Variant **p_args,int p_arg_count,Va String str; for(int i=0;i<p_arg_count;i++) { - String os = p_args[i]->operator String();; + String os = p_args[i]->operator String(); if (i==0) str=os; |
