Merge branch 'master' into memory-management

This commit is contained in:
folkert van heusden 2022-03-22 17:12:36 +01:00
commit 14bd8b3625

View file

@ -60,7 +60,9 @@ void console::put_char(const char c)
{
put_char_ll(c);
if (c == 13)
if (c == 0) {
}
else if (c == 13)
tx = 0;
else if (c == 10)
ty++;