mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-25 02:46:55 +00:00
Fixed issue [#2072]: "Box2 constructor bug".
This commit is contained in:
parent
148578b1eb
commit
7f6fa886da
|
@ -45,8 +45,8 @@ namespace OpenTK
|
|||
{
|
||||
Left = topLeft.X;
|
||||
Top = topLeft.Y;
|
||||
Right = topLeft.X;
|
||||
Bottom = topLeft.Y;
|
||||
Right = bottomRight.X;
|
||||
Bottom = bottomRight.Y;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue