You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 19:11:41 +00:00
Merge pull request #81131 from AThousandShips/callable_fix
Fix comparison of `Callable`s with binds
This commit is contained in:
@@ -88,7 +88,7 @@ ObjectID CallableCustomBind::get_object() const {
|
||||
}
|
||||
|
||||
const Callable *CallableCustomBind::get_base_comparator() const {
|
||||
return &callable;
|
||||
return callable.get_base_comparator();
|
||||
}
|
||||
|
||||
int CallableCustomBind::get_bound_arguments_count() const {
|
||||
@@ -222,7 +222,7 @@ ObjectID CallableCustomUnbind::get_object() const {
|
||||
}
|
||||
|
||||
const Callable *CallableCustomUnbind::get_base_comparator() const {
|
||||
return &callable;
|
||||
return callable.get_base_comparator();
|
||||
}
|
||||
|
||||
int CallableCustomUnbind::get_bound_arguments_count() const {
|
||||
|
||||
Reference in New Issue
Block a user