1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-07 17:36:07 +00:00

no more time error, fixes #2892

This commit is contained in:
Juan Linietsky
2015-12-12 19:21:43 -03:00
parent 6316f8941c
commit 9f75dd086e
2 changed files with 6 additions and 1 deletions

View File

@@ -468,7 +468,7 @@ Error VariantParser::parse_value(Token& token,Variant &value,Stream *p_stream,in
return err;
if (args.size()!=4) {
r_err_str="Expected 2 arguments for constructor";
r_err_str="Expected 4 arguments for constructor";
}
value=Rect2(args[0],args[1],args[2],args[3]);