Fix text overlay font rendering

Use the same font size as used in TextRenderer to avoid scaling issues.
This commit is contained in:
David Rowe 2015-06-27 14:02:04 -07:00
parent 97cd5b8b99
commit 386b3d8ae3

View file

@ -23,7 +23,7 @@
const xColor DEFAULT_BACKGROUND_COLOR = { 0, 0, 0 };
const float DEFAULT_BACKGROUND_ALPHA = 0.7f;
const int DEFAULT_MARGIN = 10;
const int DEFAULT_FONTSIZE = 11;
const int DEFAULT_FONTSIZE = 12;
const int DEFAULT_FONT_WEIGHT = 50;
class TextRenderer;