diff --git a/ee/debug/src/scr_printf.c b/ee/debug/src/scr_printf.c index e9fdc385dd9..2338811f077 100644 --- a/ee/debug/src/scr_printf.c +++ b/ee/debug/src/scr_printf.c @@ -299,6 +299,10 @@ void scr_vprintf(const char *format, va_list opt) X++; } break; + case '\r': + X = 0; + // scr_clearline(Y); //Should we clear the line? + break; default: scr_putchar(X * 7, Y * 8, fontcolor, c); X++;