diff --git a/nx/source/runtime/devices/console.c b/nx/source/runtime/devices/console.c index 880ece88..f5993c74 100644 --- a/nx/source/runtime/devices/console.c +++ b/nx/source/runtime/devices/console.c @@ -625,7 +625,8 @@ void consolePrintChar(int c) { if(currentConsole->cursorX >= currentConsole->windowWidth) { currentConsole->cursorX = 0; - consoleNewRow(); + if (c != '\n') + consoleNewRow(); } switch(c) {