mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-06-21 00:07:50 +00:00
Mino fix in debug output
ParameterCollection.ToString() adds parentheses around its output, so Delegate.ToString() should avoid adding a second pair.
This commit is contained in:
parent
451bd62f63
commit
c47166e54d
|
@ -100,7 +100,7 @@ namespace Bind.Structures
|
||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
return String.Format("{0} {1}({2})",
|
return String.Format("{0} {1}{2}",
|
||||||
ReturnType,
|
ReturnType,
|
||||||
TrimmedName,
|
TrimmedName,
|
||||||
Parameters);
|
Parameters);
|
||||||
|
|
Loading…
Reference in a new issue