GDIPlusRenderer - put off rotate text, for now

This commit is contained in:
adelikat 2019-10-26 11:26:12 -05:00
parent 8977137e84
commit 9bbfb995b8
1 changed files with 2 additions and 3 deletions

View File

@ -84,12 +84,11 @@ namespace BizHawk.Client.EmuHawk.CustomControls
public void PrepDrawString(Font font, Color color, bool rotate = false) public void PrepDrawString(Font font, Color color, bool rotate = false)
{ {
// Implement TODO
if (rotate) if (rotate)
{ {
throw new NotImplementedException("rotate not implemented yet!"); // TODO
} }
_currentFont = font; _currentFont = font;
var result = _brushCache.TryGetValue(color, out Brush brush); var result = _brushCache.TryGetValue(color, out Brush brush);