hk-modding/api

Not setting a specific font but fontsize makes fontsize not be applied

SFGrenade opened this issue · 0 comments

_fontSize = settings.FontSize;
if (_fontSize <= 0)
{
Logger.APILogger.LogError($"Specified console font size {_fontSize} is invalid");
_fontSize = settings.FontSize = 12;
}
string userFont = settings.Font;
if (string.IsNullOrEmpty(userFont))
return;
_font = Font.CreateDynamicFontFromOSFont(userFont, _fontSize);