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
1 changed files with 1 additions and 1 deletions

View File

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