diff options
Diffstat (limited to 'base/gxhintn.c')
-rw-r--r-- | base/gxhintn.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/base/gxhintn.c b/base/gxhintn.c index 1e3e429f..dc28c00d 100644 --- a/base/gxhintn.c +++ b/base/gxhintn.c @@ -467,8 +467,9 @@ static void t1_hinter__compute_rat_transform_coef(t1_hinter * self) } static inline void t1_hinter__adjust_matrix_precision(t1_hinter * self, fixed xx, fixed yy) -{ fixed x = any_abs(xx), y = any_abs(yy); - fixed c = (x > y ? x : y); +{ + ufixed x = any_abs(xx), y = any_abs(yy); + ufixed c = (x > y ? x : y); while (c >= self->max_import_coord) { /* Reduce the precision of ctmf to allow products to fit into 32 bits : */ |