summaryrefslogtreecommitdiff
path: root/stage3/font.c
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-19 09:19:43 +0100
committerLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-19 09:24:31 +0100
commit3102878c86c810c0bf877d72aceefeb28a44271d (patch)
treeb6232392ff6dc2903567a79828b4a713ababc76f /stage3/font.c
parenta6b460d3b1b0909e0c7b388f1a55365bf24c6b7b (diff)
downloadcuddles-3102878c86c810c0bf877d72aceefeb28a44271d.tar.xz
improve debugging
Diffstat (limited to 'stage3/font.c')
-rw-r--r--stage3/font.c4
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) {