[Fix] Removed extra offset added to gl_printHeight.

This commit is contained in:
Allanis 2013-08-03 18:40:47 +01:00
parent a9c57f2cab
commit f26101197e

View File

@ -330,7 +330,7 @@ int gl_printHeight(const glFont* ft_font, const int width,
} }
i++; i++;
} }
return (int)y; return (int)(y - 0.5*(double)ft_font->h);
} }
/* ================ */ /* ================ */