mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-25 06:36:48 +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;
|
Left = topLeft.X;
|
||||||
Top = topLeft.Y;
|
Top = topLeft.Y;
|
||||||
Right = topLeft.X;
|
Right = bottomRight.X;
|
||||||
Bottom = topLeft.Y;
|
Bottom = bottomRight.Y;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue