mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-05 02:04:15 +00:00
[common] rects: fix typo in rectContains
This commit is contained in:
@@ -248,7 +248,7 @@ inline static bool rectContains(const FrameDamageRect * r1, const FrameDamageRec
|
||||
return r1->x <= r2->x &&
|
||||
r1->y <= r2->y &&
|
||||
r1->x + r1->width >= r2->x + r2->width &&
|
||||
r1->y + r1->height >= r2->x + r2->height;
|
||||
r1->y + r1->height >= r2->y + r2->height;
|
||||
}
|
||||
|
||||
int rectsRejectContained(FrameDamageRect * rects, int count)
|
||||
|
Reference in New Issue
Block a user