diff options
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty.c b/drivers/tty.c index e938abd..c2be189 100644 --- a/drivers/tty.c +++ b/drivers/tty.c @@ -11,7 +11,7 @@ static uint16_t *term_buf; void tty_init(void) { term_buf = (uint16_t*)0xB8000; - term_col = VGA_MAKE_COLOR(VGA_WHITE, VGA_BLACK); + tty_set_color(VGA_MAKE_COLOR(VGA_LIGHT_GRAY, VGA_BLACK)); tty_clear(); } |