Merge pull request #3071 from natinusala/master

(gl_raster_font) Fixed scaling for newlines
This commit is contained in:
Twinaphex 2016-06-05 16:46:27 +02:00
commit bb0a633296

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 (;;)
{ {