This commit is contained in:
David Turner 2004-01-16 09:51:42 +00:00
parent 8ccb4552a9
commit 94a8918b8f
1 changed files with 12 additions and 7 deletions

View File

@ -96,7 +96,12 @@
FTC_Scaler scaler0 = &node->scaler;
return FTC_SCALER_COMPARE( scaler0, scaler );
if ( FTC_SCALER_COMPARE( scaler0, scaler ) )
{
FT_Activate_Size( node->size );
return 1;
}
return 0;
}