mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-09 08:05:41 -04:00
rectangle: Correct assignment of right within SetExtents
Previously left was being assigned twice in a row.
This commit is contained in:
parent
840a80670f
commit
e064196f25
@ -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…
x
Reference in New Issue
Block a user