* src/cff/cffparse.c, src/cid/cidload.c, src/type1/t1load.c: fixed the incorrect EM size computation
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
diff --git a/ChangeLog b/ChangeLog
index 6d94979..97febf8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2001-05-11 David Turner <david@freetype.org>
+ * src/cff/cffparse.c, src/cid/cidload.c, src/type1/t1load.c: fixed
+ the incorrect EM size computation
+
* include/freetype/fttrigon.h, src/base/fttrigon.c, src/base/ftbase.c,
src/base/Jamfile, src/base/rules.mk: adding trigonometric functions
to the core API (using Cordic algorithms).
diff --git a/src/cff/cffparse.c b/src/cff/cffparse.c
index 9570ce2..833676b 100644
--- a/src/cff/cffparse.c
+++ b/src/cff/cffparse.c
@@ -334,8 +334,7 @@
temp = ABS( matrix->yy );
- *upm = (FT_UShort)( FT_DivFix( 0x10000L,
- FT_DivFix( temp, 1000 ) ) >> 16 );
+ *upm = (FT_UShort)FT_DivFix( 0x10000L, FT_DivFix( temp, 1000 ) );
if ( temp != 0x10000L )
{
diff --git a/src/cid/cidload.c b/src/cid/cidload.c
index 06bdffe..5e7b188 100644
--- a/src/cid/cidload.c
+++ b/src/cid/cidload.c
@@ -201,7 +201,7 @@
/* `1000/temp_scale', because temp_scale was already multiplied by */
/* 1000 (in t1_tofixed(), from psobjs.c). */
root->units_per_EM = (FT_UShort)( FT_DivFix( 0x10000L,
- FT_DivFix( temp_scale, 1000 ) ) >> 16 );
+ FT_DivFix( temp_scale, 1000 ) ) );
/* we need to scale the values by 1.0/temp[3] */
if ( temp_scale != 0x10000L )
diff --git a/src/type1/t1load.c b/src/type1/t1load.c
index 2691b9b..b848c97 100644
--- a/src/type1/t1load.c
+++ b/src/type1/t1load.c
@@ -895,8 +895,8 @@
/* 1000 / temp_scale, because temp_scale was already multiplied by */
/* 1000 (in t1_tofixed, from psobjs.c). */
- root->units_per_EM = (FT_UShort)( FT_DivFix( 0x10000L,
- FT_DivFix( temp_scale, 1000 ) ) >> 16 );
+ root->units_per_EM = (FT_UShort)FT_DivFix( 0x10000L,
+ FT_DivFix( temp_scale, 1000 ) );
/* we need to scale the values by 1.0/temp_scale */
if ( temp_scale != 0x10000L )
@@ -1194,7 +1194,7 @@
return;
/* initialize tables (leaving room for addition of .notdef, */
- /* if necessary). */
+ /* if necessary). */
error = psaux->ps_table_funcs->init( code_table,
loader->num_glyphs + 1,