Tweak suggested use of `lsb_delta' and `rsb_delta'.

This commit is contained in:
Alexei Podtelezhnikov 2017-07-06 22:31:57 -04:00
parent cf8d9b4ce3
commit 762de5e285
1 changed files with 2 additions and 2 deletions

View File

@ -1795,9 +1795,9 @@ FT_BEGIN_HEADER
/* */
/* <load glyph with `FT_Load_Glyph'> */
/* */
/* if ( prev_rsb_delta - slot->lsb_delta >= 32 ) */
/* if ( prev_rsb_delta - slot->lsb_delta > 32 ) */
/* origin_x -= 64; */
/* else if ( prev_rsb_delta - slot->lsb_delta < -32 ) */
/* else if ( prev_rsb_delta - slot->lsb_delta < -31 ) */
/* origin_x += 64; */
/* */
/* prev_rsb_delta = slot->rsb_delta; */