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:
@@ -181,7 +181,7 @@ console_init(void)
|
|||||||
void
|
void
|
||||||
console_clear_screen(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 ";
|
char buff[] = "\033Y ";
|
||||||
buff[3] += (char)x;
|
buff[3] += (char)x;
|
||||||
buff[2] += (char)y;
|
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 ";
|
char buff[] = "\033b \033c ";
|
||||||
buff[2] = (char)translate_color(foreground);
|
buff[2] = (char)translate_color(foreground);
|
||||||
buff[5] = (char)translate_color(background);
|
buff[5] = (char)translate_color(background);
|
||||||
stdin->WriteAt(NULL, 0LL, buff, 6);
|
sInput.WriteAt(NULL, 0LL, buff, 6);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user