From 2a996418bfddeba812dec537fca83a2f8394dd4b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 31 Dec 2024 13:34:18 +0530 Subject: [PATCH] ... --- kitty/line.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kitty/line.h b/kitty/line.h index 06d80d5ba..1559514bc 100644 --- a/kitty/line.h +++ b/kitty/line.h @@ -54,11 +54,11 @@ typedef union CPUCell { char_type next_char_was_wrapped : 1; char_type is_multicell : 1; char_type natural_width: 1; - char_type x : WIDTH_BITS + SCALE_BITS + 1; - char_type y : SCALE_BITS + 1; + char_type scale: SCALE_BITS; char_type subscale_n: SUBSCALE_BITS; char_type subscale_d: SUBSCALE_BITS; - char_type scale: SCALE_BITS; + char_type x : WIDTH_BITS + SCALE_BITS + 1; + char_type y : SCALE_BITS + 1; char_type width: WIDTH_BITS; char_type vertical_align: 3; char_type : 15;