mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-14 15:35:45 -04:00
Common/Rectangle: Fix off-by-one error in Intersects()
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user