diff options
author | admix <eugene.andreeshchev@gmail.com> | 2015-11-28 19:53:05 +0100 |
---|---|---|
committer | koalefant <mandarin.cake@gmail.com> | 2015-11-29 17:02:52 +0100 |
commit | b2508ca879cfeee6edb5e6a7722cf85243a5a88f (patch) | |
tree | 242f9c12cbe74812ddfee51fc0cf40d9efd4214d /modules/gdscript/gd_script.h | |
parent | b0dbcccb6c430cdf8a8f050676427f2414037ef7 (diff) |
Break into GDScript debugger when new() fails
Diffstat (limited to 'modules/gdscript/gd_script.h')
-rw-r--r-- | modules/gdscript/gd_script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_script.h b/modules/gdscript/gd_script.h index 37ef47af6c..850ffec05f 100644 --- a/modules/gdscript/gd_script.h +++ b/modules/gdscript/gd_script.h @@ -286,7 +286,7 @@ friend class GDScriptLanguage; String name; - GDInstance* _create_instance(const Variant** p_args,int p_argcount,Object *p_owner,bool p_isref); + GDInstance* _create_instance(const Variant** p_args,int p_argcount,Object *p_owner,bool p_isref,Variant::CallError &r_error); void _set_subclass_path(Ref<GDScript>& p_sc,const String& p_path); |