FbTty: fix \n printing

This commit is contained in:
2024-04-26 18:22:08 +02:00
parent 00dc3b4cbf
commit 828ad63f38

View File

@@ -14,6 +14,7 @@ FbTty::FbTty(Framebuffer *fb) : _fb(fb) {
void FbTty::putchar(char c) {
if (c == '\n') {
next_row();
return;
}
for (int x = 0; x < 8; x++) {