shouldn't access FILE as it's not declared.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23359 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2008-01-10 21:41:55 +00:00
parent a03f522e5a
commit d86cef8673
1 changed files with 3 additions and 3 deletions

View File

@ -181,7 +181,7 @@ console_init(void)
void
console_clear_screen(void)
{
stdin->WriteAt(NULL, 0LL, "\033E", 2);
sInput.WriteAt(NULL, 0LL, "\033E", 2);
}
@ -207,7 +207,7 @@ console_set_cursor(int32 x, int32 y)
char buff[] = "\033Y ";
buff[3] += (char)x;
buff[2] += (char)y;
stdin->WriteAt(NULL, 0LL, buff, 4);
sInput.WriteAt(NULL, 0LL, buff, 4);
}
@ -245,7 +245,7 @@ console_set_color(int32 foreground, int32 background)
char buff[] = "\033b \033c ";
buff[2] = (char)translate_color(foreground);
buff[5] = (char)translate_color(background);
stdin->WriteAt(NULL, 0LL, buff, 6);
sInput.WriteAt(NULL, 0LL, buff, 6);
}