InputRoll - fix placement of rotated text

This commit is contained in:
adelikat 2019-10-26 16:25:42 -05:00
parent 5a17d20cf0
commit 14ffd143d4
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ namespace BizHawk.Client.EmuHawk
if (visibleColumns[j].Name == "FrameColumn") // TODO: don't do this hack
{
_renderer.PrepDrawString(_font, _foreColor, rotate: true);
DrawString(text, ColumnWidth, point);
DrawString(text, ColumnWidth, new Point(point.X + _charSize.Height + CellWidthPadding, point.Y + CellHeightPadding));
_renderer.PrepDrawString(_font, _foreColor, rotate: false);
}
else