[console] Add a comment about skipping the first char

I had to dig through logs of deleted files to find out what was going
on. Forget six months later, twenty years...
This commit is contained in:
Bill Currie 2021-12-20 21:03:40 +09:00
parent ad83422c56
commit 194f958666
1 changed files with 1 additions and 0 deletions

View File

@ -456,6 +456,7 @@ C_Print (const char *fmt, va_list args)
}
// echo to debugging console
// but don't print the highchars flag (leading \x01)
if ((byte)buffer->str[0] > 2)
fputs (buffer->str, stdout);
else if ((byte)buffer->str[0])