remove some unnecessary .ToString() calls

This commit is contained in:
adelikat 2020-05-23 13:35:56 -05:00
parent 63cd1c603e
commit 1326a30287
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ namespace BizHawk.Client.EmuHawk
public InputFocus Source;
public override string ToString()
{
return $"{EventType.ToString()}:{LogicalButton.ToString()}";
return $"{EventType}:{LogicalButton}";
}
}