summaryrefslogtreecommitdiffstats
path: root/core/math/rect2.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-05-01 08:19:04 +0200
committerGitHub <noreply@github.com>2019-05-01 08:19:04 +0200
commitae41e35191cc64471f918318dc32428728c9c4bb (patch)
tree904f7611e51a9a0fa8f3e75f5556c89aa66396b5 /core/math/rect2.h
parent8afc9c3938af385be17aab92ec5c4adcbfb0781a (diff)
parent8460d0678c28816f6f206f40b71de2510fab1ffc (diff)
downloadredot-engine-ae41e35191cc64471f918318dc32428728c9c4bb.tar.gz
Merge pull request #27676 from qarmin/small_fixes_2
Small fixes to static analyzer bugs
Diffstat (limited to 'core/math/rect2.h')
-rw-r--r--core/math/rect2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/rect2.h b/core/math/rect2.h
index 3b66617c83..d636aa223f 100644
--- a/core/math/rect2.h
+++ b/core/math/rect2.h
@@ -67,7 +67,7 @@ struct Rect2 {
if (p_point.x < position.x) {
real_t d = position.x - p_point.x;
- dist = inside ? d : MIN(dist, d);
+ dist = d;
inside = false;
}
if (p_point.y < position.y) {