* include/grub/term.h (grub_term_coordinate): Extend to 16-bit per

coordinate.
This commit is contained in:
Vladimir Serbinenko 2013-11-04 00:39:13 +01:00
parent 323de05ba2
commit 44d47bbe6f
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
* include/grub/term.h (grub_term_coordinate): Extend to 16-bit per
coordinate.
2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
Support GRUB_DISABLE_SUBMENU config.

View File

@ -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