In function T2_Get_String, we called T2_Get_Name with an string id

that was off by one.
This commit is contained in:
Tom Kacvinsky 2000-11-23 03:43:14 +00:00
parent 36d67f89c9
commit b50b481d4c
1 changed files with 1 additions and 1 deletions

View File

@ -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 */
{