summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-06-08 08:04:37 +0200
committerGitHub <noreply@github.com>2017-06-08 08:04:37 +0200
commitd985dd6aedb855b6ea4ffa75756108aa4fee3518 (patch)
tree8ca31cd7000f035d8c9711d70057e19ceee5a810
parentb52466f79353e10a7984c835576a67502631b27e (diff)
parentfcaddeccbb36da919ef09fac563f0ddab77da25e (diff)
Merge pull request #9093 from Noshyaar/pr-fixbuild
Fix build error, commit bee81d5
-rw-r--r--core/math/math_2d.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/math_2d.h b/core/math/math_2d.h
index 3369e2ec4f..780bb532d7 100644
--- a/core/math/math_2d.h
+++ b/core/math/math_2d.h
@@ -341,8 +341,8 @@ struct Rect2 {
inline Rect2 grow_individual(real_t p_left, real_t p_top, real_t p_right, real_t p_bottom) const {
Rect2 g = *this;
- g.pos.x -= p_left;
- g.pos.y -= p_top;
+ g.position.x -= p_left;
+ g.position.y -= p_top;
g.size.width += p_left + p_right;
g.size.height += p_top + p_bottom;