From: Vladimir Serbinenko Date: Sun, 3 Nov 2013 23:39:13 +0000 (+0100) Subject: * include/grub/term.h (grub_term_coordinate): Extend to 16-bit per X-Git-Tag: grub-2.02-beta1~496 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44d47bbe6fe6ed0c8fc5855c07b2917a38371ae4;p=thirdparty%2Fgrub.git * include/grub/term.h (grub_term_coordinate): Extend to 16-bit per coordinate. --- 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