mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-30 17:05:43 -04:00
Common/Rectangle: Fix off-by-one error in Intersects()
This commit is contained in:
parent
77a60f0c5f
commit
9fd95c3e21
@ -128,7 +128,7 @@ struct Rectangle
|
||||
/// Tests for intersection between two rectangles.
|
||||
constexpr bool Intersects(const Rectangle& rhs) const
|
||||
{
|
||||
return !(left > rhs.right || rhs.left > right || top > rhs.bottom || rhs.top > bottom);
|
||||
return !(left >= rhs.right || rhs.left >= right || top >= rhs.bottom || rhs.top >= bottom);
|
||||
}
|
||||
|
||||
/// Tests whether the specified point is contained in the rectangle.
|
||||
|
Loading…
x
Reference in New Issue
Block a user