Font kerning is no longer ignored in intermission screen

See http://forum.zdoom.org/viewtopic.php?t=50304
This commit is contained in:
alexey.lysiuk 2016-01-06 13:26:05 +02:00
parent 1c6a00059f
commit 73f4e013f1
1 changed files with 2 additions and 0 deletions

View File

@ -329,6 +329,7 @@ void DIntermissionScreenText::Drawer ()
int c;
const FRemapTable *range;
const char *ch = mText;
const int kerning = SmallFont->GetDefaultKerning();
// Count number of rows in this text. Since it does not word-wrap, we just count
// line feed characters.
@ -380,6 +381,7 @@ void DIntermissionScreenText::Drawer ()
}
pic = SmallFont->GetChar (c, &w);
w += kerning;
w *= CleanXfac;
if (cx + w > SCREENWIDTH)
continue;