Merge pull request #3445 from akien-mga/master

Add missing return for typeof() MethodInfo
This commit is contained in:
Rémi Verschelde 2016-01-26 00:03:33 +01:00
commit 7af864f467
1 changed files with 4 additions and 1 deletions

View File

@ -1355,9 +1355,12 @@ MethodInfo GDFunctions::get_info(Function p_func) {
return mi; return mi;
} break; } break;
case TYPE_OF: { case TYPE_OF: {
MethodInfo mi("typeof",PropertyInfo(Variant::NIL,"what")); MethodInfo mi("typeof",PropertyInfo(Variant::NIL,"what"));
mi.return_val.type=Variant::INT; mi.return_val.type=Variant::INT;
}; return mi;
} break;
case TEXT_STR: { case TEXT_STR: {
MethodInfo mi("str",PropertyInfo(Variant::NIL,"what"),PropertyInfo(Variant::NIL,"...")); MethodInfo mi("str",PropertyInfo(Variant::NIL,"what"),PropertyInfo(Variant::NIL,"..."));