(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; return;
} }
line_height = scale * 1/ (float) line_height = 1 /
font->font_driver->get_line_height(font->font_data); (scale * (float) font->font_driver->get_line_height(font->font_data));
for (;;) for (;;)
{ {