]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* include/grub/term.h (grub_term_coordinate): Extend to 16-bit per
authorVladimir Serbinenko <phcoder@gmail.com>
Sun, 3 Nov 2013 23:39:13 +0000 (00:39 +0100)
committerVladimir Serbinenko <phcoder@gmail.com>
Sun, 3 Nov 2013 23:39:13 +0000 (00:39 +0100)
coordinate.

ChangeLog
include/grub/term.h

index 8c55d520d3db003126f16b748afe065ff6c7e185..5fa95b403f37396c4dd5cb9b518e0fbadcb7c945 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index e2110f39065b151094aafe13cf3221148c7cc870..17cf071c1ba3f4a6c59e738dbefd2f02e95832bc 100644 (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