(D3D11) font renderer: fix line spacing.

This commit is contained in:
aliaspider 2018-02-02 02:21:18 +01:00
parent caad590d04
commit 1e96393228

View File

@ -244,7 +244,7 @@ static void d3d11_font_render_message(
return; return;
} }
line_height = scale / font->font_driver->get_line_height(font->font_data); line_height = font->font_driver->get_line_height(font->font_data) * scale / video_info->height;
for (;;) for (;;)
{ {