diff options
Diffstat (limited to 'userland/terminal/term.c')
-rw-r--r-- | userland/terminal/term.c | 1 |
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)); } |