From 996775191a3fdeeeaee80e3123ef2240e6390b3d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 7 Aug 2018 09:44:01 -0700 Subject: [PATCH] Minor --- src/hb-font-private.hh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/hb-font-private.hh b/src/hb-font-private.hh index 6862e06..c1981dd 100644 --- a/src/hb-font-private.hh +++ b/src/hb-font-private.hh @@ -370,13 +370,11 @@ struct hb_font_t hb_direction_t direction, hb_position_t *x, hb_position_t *y) { - if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) { + *x = *y = 0; + if (likely (HB_DIRECTION_IS_HORIZONTAL (direction))) *x = get_glyph_h_advance (glyph); - *y = 0; - } else { - *x = 0; + else *y = get_glyph_v_advance (glyph); - } } inline void guess_v_origin_minus_h_origin (hb_codepoint_t glyph, -- 2.7.4