Start fs.c

This commit is contained in:
Such Meme, Many Skill
2019-12-01 01:49:36 +01:00
parent c0c020e505
commit cd4f2cd347
6 changed files with 208 additions and 38 deletions

View File

@@ -227,6 +227,11 @@ void gfx_putc(char c)
if (gfx_con.y > gfx_ctxt.height - 16)
gfx_con.y = 0;
}
else if (c == '\e')
gfx_con.x = 672;
else if (c == '\a')
gfx_con.x = 608;
break;
case 8:
default:
@@ -261,6 +266,7 @@ void gfx_putc(char c)
if (gfx_con.y > gfx_ctxt.height - 8)
gfx_con.y = 0;
}
break;
}
}