mirror of
https://github.com/godotengine/godot.git
synced 2025-01-30 21:33:18 +08:00
GDScript: Fix type name on error message for function parameters
This commit is contained in:
parent
1aef8bfeb1
commit
76678b2609
@ -7872,7 +7872,7 @@ void GDScriptParser::_check_function_types(FunctionNode *p_function) {
|
||||
if (!_is_type_compatible(p_function->argument_types[i], def_type, true)) {
|
||||
String arg_name = p_function->arguments[i];
|
||||
_set_error("Value type (" + def_type.to_string() + ") doesn't match the type of argument '" +
|
||||
arg_name + "' (" + p_function->arguments[i] + ").",
|
||||
arg_name + "' (" + p_function->argument_types[i].to_string() + ").",
|
||||
p_function->line);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user