GDScript: Fix Callable call error text

This commit is contained in:
Danil Alexeev 2025-05-02 18:22:49 +03:00
parent 1cf573f44d
commit 2b30f23595
No known key found for this signature in database
GPG key ID: 5A52F75A8679EC57
7 changed files with 48 additions and 15 deletions

View file

@ -551,7 +551,8 @@ private:
} profile;
#endif
_FORCE_INLINE_ String _get_call_error(const String &p_where, const Variant **p_argptrs, const Variant &p_ret, const Callable::CallError &p_err) const;
String _get_call_error(const String &p_where, const Variant **p_argptrs, int p_argcount, const Variant &p_ret, const Callable::CallError &p_err) const;
String _get_callable_call_error(const String &p_where, const Callable &p_callable, const Variant **p_argptrs, int p_argcount, const Variant &p_ret, const Callable::CallError &p_err) const;
Variant _get_default_variant_for_data_type(const GDScriptDataType &p_data_type);
public: