Skip to content

Commit

Permalink
. 修正菜单项目显示(issues #159)。
Browse files Browse the repository at this point in the history
  • Loading branch information
yaya committed Nov 18, 2017
1 parent 7245b66 commit b912f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stage2/stage2.c
Expand Up @@ -123,7 +123,7 @@ static void print_help_message (const char *message,int flags)
if (MENU_BOX_B + 1 + j > current_term->max_lines) if (MENU_BOX_B + 1 + j > current_term->max_lines)
return; return;
gotoxy (MENU_HELP_X, MENU_BOX_B + 1 + j); gotoxy (MENU_HELP_X, MENU_BOX_B + 1 + j);
for (x = 0; x < current_term->chars_per_line; x++) for (x = MENU_HELP_X; x < MENU_HELP_E + 1; x++)
grub_putchar (' ', 255); grub_putchar (' ', 255);
} }
} }
Expand Down

0 comments on commit b912f30

Please sign in to comment.