mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-08 10:10:00 +00:00
* Rectangle.cs: Fixed ToString formatting code.
This commit is contained in:
parent
8733dd7c2f
commit
62fee03192
|
@ -297,7 +297,7 @@ namespace OpenTK
|
||||||
/// <returns>A <see cref="System.String"/> that describes this instance.</returns>
|
/// <returns>A <see cref="System.String"/> that describes this instance.</returns>
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
return String.Format("{{{0}, {1}}}-{{{2},{3}}}", Location, Size);
|
return String.Format("{{{0}-{1}}}", Location, Location + Size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue