diff options
Diffstat (limited to 'stage3/font.c')
-rw-r--r-- | stage3/font.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stage3/font.c b/stage3/font.c index 69017ca..67127f6 100644 --- a/stage3/font.c +++ b/stage3/font.c @@ -113,8 +113,10 @@ void print_char(char c) break; case '\b': - if (cursor_x > 0) + if (cursor_x > 0) { cursor_x--; + render_char(' '); + } break; case '\r': |