mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 08:05:41 +00:00
Merge pull request #561 from lioncash/rectangle
rectangle: Correct assignment of right within SetExtents
This commit is contained in:
commit
e228588823
|
@ -41,7 +41,7 @@ struct Rectangle
|
||||||
{
|
{
|
||||||
left = x;
|
left = x;
|
||||||
top = y;
|
top = y;
|
||||||
left = x + width;
|
right = x + width;
|
||||||
bottom = y + height;
|
bottom = y + height;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue