瀏覽代碼

Fix for clang warning at distance_to

Marcelo Fernandez 7 年之前
父節點
當前提交
bbd21c2203
共有 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) {