From d86cef867304835c14039e972ae9772247996c52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 10 Jan 2008 21:41:55 +0000 Subject: [PATCH] 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 --- src/system/boot/platform/atari_m68k/console.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system/boot/platform/atari_m68k/console.cpp b/src/system/boot/platform/atari_m68k/console.cpp index dbce5c5500..b2a3655367 100644 --- a/src/system/boot/platform/atari_m68k/console.cpp +++ b/src/system/boot/platform/atari_m68k/console.cpp @@ -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); }