diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 09:19:43 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 09:24:31 +0100 |
commit | 3102878c86c810c0bf877d72aceefeb28a44271d (patch) | |
tree | b6232392ff6dc2903567a79828b4a713ababc76f /stage3/font.c | |
parent | a6b460d3b1b0909e0c7b388f1a55365bf24c6b7b (diff) | |
download | cuddles-3102878c86c810c0bf877d72aceefeb28a44271d.tar.xz |
improve debugging
Diffstat (limited to 'stage3/font.c')
-rw-r--r-- | stage3/font.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stage3/font.c b/stage3/font.c index ca3a420..31b771e 100644 --- a/stage3/font.c +++ b/stage3/font.c @@ -116,10 +116,10 @@ void print_char(char c) cursor_x = 0; break; - /*case '\t': + case '\t': render_char(' '); cursor_x = (cursor_x + TAB_SIZE) & ~(TAB_SIZE - 1); - break;*/ + break; case '\b': if (cursor_x > 0) { |