* src/base/ftobjs.c (FT_Get_Next_Char): updated to new FT_CMap

definitions
BRANCH-2-1-5
David Turner 23 years ago
parent 143e31bf6b
commit 1eae664342
  1. 5
      src/base/ftobjs.c

@ -1507,9 +1507,8 @@
#ifdef FT_CONFIG_OPTION_USE_CMAPS
FT_CMap cmap = FT_CMAP( face->charmap );
result = cmap->clazz->char_next( cmap, charcode, &gindex );
if ( gindex == 0 )
result = 0;
gindex = cmap->clazz->char_next( cmap, &charcode );
result = ( gindex == 0 ) ? 0 : charcode;
#else /* !FT_CONFIG_OPTION_USE_CMAPS */
driver = face->driver;
result = driver->clazz->get_next_char( face->charmap, charcode );

Loading…
Cancel
Save