remove unused method

This commit is contained in:
adelikat 2019-10-19 11:46:56 -05:00
parent 7428a5d244
commit f96e778c35
1 changed files with 0 additions and 13 deletions

View File

@ -44,19 +44,6 @@ namespace BizHawk.Client.EmuHawk
}
}
private string Cap(string text, int? width)
{
if (string.IsNullOrEmpty(text) || width == null)
{
return text;
}
var max = width.Value / (_charSize.Width - CellWidthPadding);
return text.Length < max
? text
: text.Substring(0, max);
}
private void DrawString(string text, int? width, Point point)
{
if (string.IsNullOrWhiteSpace(text))