(gl_raster_font) Fixed scaling for newlines

This commit is contained in:
Nathan S 2016-06-05 14:56:23 +02:00
parent ca6f539ff5
commit 6889b58270

View File

@ -360,8 +360,8 @@ static void gl_raster_font_render_message(
return;
}
line_height = scale * 1/ (float)
font->font_driver->get_line_height(font->font_data);
line_height = 1 /
(scale * (float) font->font_driver->get_line_height(font->font_data));
for (;;)
{