Minor
authorBehdad Esfahbod <behdad@behdad.org>
Tue, 7 Aug 2018 16:44:01 +0000 (09:44 -0700)
committerBehdad Esfahbod <behdad@behdad.org>
Tue, 7 Aug 2018 16:44:36 +0000 (09:44 -0700)
src/hb-font-private.hh

index 6862e06..c1981dd 100644 (file)
@@ -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,