Fixed issue [#2072]: "Box2 constructor bug".

This commit is contained in:
the_fiddler 2010-10-11 07:54:46 +00:00
parent 546decd579
commit cf97ff84a9

View file

@ -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>