Another attempt to fix rendering of certain(?) fonts.

SVN revision: 19439
This commit is contained in:
Kim Woelders 2005-12-31 00:58:44 +00:00
parent 82672fb641
commit c26ccebd9d
1 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,8 @@ imlib_render_str(ImlibImage * im, ImlibFont * fn, int drx, int dry,
DATA32 *data, col;
int nx, ny;
imlib_font_query_advance(fn, text, &w, &h);
imlib_font_query_advance(fn, text, &w, NULL);
h = imlib_font_max_ascent_get(fn) - imlib_font_max_descent_get(fn);
data = malloc(w * h * sizeof(DATA32));
if (!data)