From 37f3b6f35f57830a746d9afc5c1b1b0de86c78d5 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 30 Jun 2024 16:27:18 +0200 Subject: ws: Use nicer colors --- userland/terminal/term.c | 1 - 1 file changed, 1 deletion(-) (limited to 'userland/terminal') diff --git a/userland/terminal/term.c b/userland/terminal/term.c index 246474f..bff6eab 100644 --- a/userland/terminal/term.c +++ b/userland/terminal/term.c @@ -234,7 +234,6 @@ void terminal_resize(uint32_t sx, uint32_t sy) { for (; x < sx; x += 8) { GUI_DrawFont(global_w, x, y, terminal_char_buffer[y / 8][x / 8]); } - GUI_DrawLine(global_w, x, y, sx, y, 0xFF00FF); } assert(GUI_SendResize(global_w, sx, sy)); } -- cgit v1.2.3