Seems the atari VT52 emulation doesn't wrap lines, so really send a LF before clearing the 2nd help line.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26108 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-06-23 19:38:24 +00:00
parent 753ef08150
commit a474ef4c38
@@ -133,7 +133,10 @@ print_item_at(int32 line, MenuItem *item, bool clearHelp = true)
if (clearHelp) { if (clearHelp) {
// clear help text area // clear help text area
for (int32 i = 0; i < console_width() * 2 - 1; i++) for (int32 i = 0; i < console_width() - 1; i++)
putchar(' ');
putchar('\n');
for (int32 i = 0; i < console_width() - 1; i++)
putchar(' '); putchar(' ');
console_set_cursor(0, console_height() - kHelpLines); console_set_cursor(0, console_height() - kHelpLines);