Переглянути джерело

Merge pull request #17704 from marcelofg55/clang_warn_fix

Fix for clang warning at distance_to
Rémi Verschelde 7 роки тому
батько
коміт
f672fd7686
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      core/math/math_2d.h

+ 1 - 1
core/math/math_2d.h

@@ -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) {