Bring back scaled fonts as were in commit b3c2fabf16

re: commit ebc8976dc1
master
vexed 2011-07-17 14:51:01 -04:00
parent 6688c2216a
commit 8b8d2b676a
1 changed files with 5 additions and 1 deletions

View File

@ -233,8 +233,12 @@ void iV_SetFont(enum iV_fonts FontID)
{
switch (FontID)
{
default:
case font_scaled:
iV_SetTextSize(12.f * pie_GetVideoBufferHeight() / 480);
glcFont(_glcFont_Regular);
break;
default:
case font_regular:
iV_SetTextSize(12.f);
glcFont(_glcFont_Regular);