HULK console: clear last row when shifting rows up

This commit is contained in:
Josh Holtrop 2022-03-25 10:51:52 -04:00
parent 98e992aad0
commit 37d5621e41

View File

@ -49,6 +49,7 @@ struct console
fb.copy_rows_up(fb_y(m_height - 1u),
(m_height - 1u) * kfont.line_height,
kfont.line_height);
fb.rect(0u, fb_y(m_height - 1u), fb_x(m_width), kfont.line_height, 0u);
}
}