* include/grub/term.h (grub_term_coordinate): Extend to 16-bit per
coordinate.
This commit is contained in:
parent
323de05ba2
commit
44d47bbe6f
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
2013-11-04 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Support GRUB_DISABLE_SUBMENU config.
|
Support GRUB_DISABLE_SUBMENU config.
|
||||||
|
|
|
@ -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. */
|
/* Made in a way to fit into uint32_t and so be passed in a register. */
|
||||||
struct grub_term_coordinate
|
struct grub_term_coordinate
|
||||||
{
|
{
|
||||||
grub_uint8_t x;
|
grub_uint16_t x;
|
||||||
grub_uint8_t y;
|
grub_uint16_t y;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct grub_term_output
|
struct grub_term_output
|
||||||
|
|
Loading…
Reference in a new issue