< prev index next >

src/java.desktop/share/native/libfreetype/src/truetype/ttpload.c

Print this page

        

@@ -350,16 +350,16 @@
 
     if ( FT_FRAME_ENTER( face->cvt_size * 2L ) )
       goto Exit;
 
     {
-      FT_Short*  cur   = face->cvt;
-      FT_Short*  limit = cur + face->cvt_size;
+      FT_Int32*  cur   = face->cvt;
+      FT_Int32*  limit = cur + face->cvt_size;
 
 
       for ( ; cur < limit; cur++ )
-        *cur = FT_GET_SHORT();
+        *cur = FT_GET_SHORT() * 64;
     }
 
     FT_FRAME_EXIT();
     FT_TRACE2(( "loaded\n" ));
 
< prev index next >