Commit 3da9d565ee639c50f8460697c084694bd766fd45

Tom Kacvinsky 2000-11-23T03:43:14

In function T2_Get_String, we called T2_Get_Name with an string id that was off by one.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/cff/t2load.c b/src/cff/t2load.c
index d9e46de..2a79ab6 100644
--- a/src/cff/t2load.c
+++ b/src/cff/t2load.c
@@ -302,7 +302,7 @@
   {
     /* if it is not a standard string, return it */
     if ( sid > 390 )
-      return T2_Get_Name( index, sid - 390 );
+      return T2_Get_Name( index, sid - 391 );
 
     /* that's a standard string, fetch a copy from the PSName module */
     {