diff --git a/ChangeLog b/ChangeLog index 8c55d520d..5fa95b403 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-11-04 Vladimir Serbinenko + + * include/grub/term.h (grub_term_coordinate): Extend to 16-bit per + coordinate. + 2013-11-04 Vladimir Serbinenko Support GRUB_DISABLE_SUBMENU config. diff --git a/include/grub/term.h b/include/grub/term.h index e2110f390..17cf071c1 100644 --- a/include/grub/term.h +++ b/include/grub/term.h @@ -162,8 +162,8 @@ typedef struct grub_term_input *grub_term_input_t; /* Made in a way to fit into uint32_t and so be passed in a register. */ struct grub_term_coordinate { - grub_uint8_t x; - grub_uint8_t y; + grub_uint16_t x; + grub_uint16_t y; }; struct grub_term_output