mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 11:05:40 +00:00
Fixed issue [#2072]: "Box2 constructor bug".
This commit is contained in:
parent
546decd579
commit
cf97ff84a9
|
@ -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