diff options
Diffstat (limited to 'core/class_db.h')
-rw-r--r-- | core/class_db.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/class_db.h b/core/class_db.h index 3864522be4..092469beb7 100644 --- a/core/class_db.h +++ b/core/class_db.h @@ -306,8 +306,7 @@ public: if (type->method_map.has(p_name)) { memdelete(bind); // overloading not supported - ERR_EXPLAIN("Method already bound: " + instance_type + "::" + p_name); - ERR_FAIL_V(NULL); + ERR_FAIL_V_MSG(NULL, "Method already bound: " + instance_type + "::" + p_name + "."); } type->method_map[p_name] = bind; #ifdef DEBUG_METHODS_ENABLED |