Common/Rectangle: Fix typo in assignment operator

This commit is contained in:
Connor McLaughlin 2020-02-28 17:00:19 +10:00
parent 122726fe65
commit 5df7fbd68c

View file

@ -68,7 +68,7 @@ struct Rectangle
{ {
left = rhs.left; left = rhs.left;
top = rhs.top; top = rhs.top;
left = rhs.left; right = rhs.right;
bottom = rhs.bottom; bottom = rhs.bottom;
return *this; return *this;
} }