mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +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;
|
||||
top = y;
|
||||
left = x + width;
|
||||
right = x + width;
|
||||
bottom = y + height;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue