Fix console_clear_screen(), ClearScreen() only clears from the current y position so we must Move() before.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39111 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2010-10-24 02:12:18 +00:00
parent 6fff309da9
commit 4ae7f92a58

View File

@ -330,6 +330,7 @@ console_init(void)
void
console_clear_screen(void)
{
Move(&sScreen->RastPort, 0, sScreenTopOffset);
ClearScreen(&sScreen->RastPort);
}