summaryrefslogtreecommitdiff
path: root/userland/terminal/term.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-06-30 16:27:18 +0200
committerAnton Kling <anton@kling.gg>2024-06-30 18:04:47 +0200
commit37f3b6f35f57830a746d9afc5c1b1b0de86c78d5 (patch)
tree020423502d0600ff7750bd1701ab7ee514512fbd /userland/terminal/term.c
parent9ce029f61286d6e7971c32e30a019dbb4e526e8e (diff)
ws: Use nicer colors
Diffstat (limited to 'userland/terminal/term.c')
-rw-r--r--userland/terminal/term.c1
1 files changed, 0 insertions, 1 deletions
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));
}