* srd/base/ftlcdfil.c (FT_Library_SetLcdGeometry): Fix return value.

This commit is contained in:
Alexei Podtelezhnikov 2021-01-19 07:35:38 -05:00
parent f1f9705f93
commit b594cd90bd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2021-01-19 Alexei Podtelezhnikov <apodtele@gmail.com>
* srd/base/ftlcdfil.c (FT_Library_SetLcdGeometry): Fix return value.
2021-01-15 Nikolaus Waxweiler <madigens@gmail.com>
[afshaper] Fix hb_ot_tags_from_script deprecation warning.

View File

@ -428,7 +428,7 @@
ft_memcpy( library->lcd_geometry, sub, 3 * sizeof( FT_Vector ) );
return FT_THROW( Unimplemented_Feature );
return FT_Err_Ok;
}
#endif /* !FT_CONFIG_OPTION_SUBPIXEL_RENDERING */