소스 검색

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 {
 	inline real_t distance_to(const Vector2 &p_point) const {
 
 
-		real_t dist;
+		real_t dist = 0.0;
 		bool inside = true;
 		bool inside = true;
 
 
 		if (p_point.x < position.x) {
 		if (p_point.x < position.x) {