Fix for clang warning at distance_to
This commit is contained in:
parent
cc34406b5d
commit
bbd21c2203
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ struct Rect2 {
|
|||
|
||||
inline real_t distance_to(const Vector2 &p_point) const {
|
||||
|
||||
real_t dist;
|
||||
real_t dist = 0.0;
|
||||
bool inside = true;
|
||||
|
||||
if (p_point.x < position.x) {
|
||||
|
|
Loading…
Reference in a new issue