forked from minhngoc25a/freetype2
[memory debug] incompatible change of internal API for 16bit & ILP64 systems.
ft_mem_primes[] is originally typed to FT_Int, it could not track the memory allocation on 16bit (I16-LP32) system.
This commit is contained in:
parent
c6569d4423
commit
70e4141c0d
|
@ -149,7 +149,7 @@
|
|||
* Prime numbers are ugly to handle. It would be better to implement
|
||||
* L-Hashing, which is 10% faster and doesn't require divisions.
|
||||
*/
|
||||
static const FT_Int ft_mem_primes[] =
|
||||
static const FT_Int32 ft_mem_primes[] =
|
||||
{
|
||||
7,
|
||||
11,
|
||||
|
|
Loading…
Reference in New Issue