* src/base/ftadvance.c (FT_Get_Advances): Fix invalid left shift.

This commit is contained in:
Werner Lemberg 2016-03-29 09:19:22 +02:00
parent 351fc4b4a4
commit ff82747e6d
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2016-03-29 Werner Lemberg <wl@gnu.org>
* src/base/ftadvance.c (FT_Get_Advances): Fix invalid left shift.
2016-03-29 Werner Lemberg <wl@gnu.org>
[pfr] Fix binary search (#47514).

View File

@ -159,8 +159,8 @@
/* scale from 26.6 to 16.16 */
padvances[nn] = ( flags & FT_LOAD_VERTICAL_LAYOUT )
? face->glyph->advance.y << 10
: face->glyph->advance.x << 10;
? face->glyph->advance.y * 1024
: face->glyph->advance.x * 1024;
}
return error;