Skip to content
Snippets Groups Projects
Commit 3be86ca5 authored by rswindell's avatar rswindell
Browse files

Better detection of unitialized password char on TEXT.DAT->YNQX line.

parent 134f2584
No related branches found
No related tags found
No related merge requests found
......@@ -187,7 +187,7 @@ void sbbs_t::outchar(char ch)
if(online==ON_REMOTE && console&CON_R_ECHO) {
if(console&CON_R_ECHOX && (uchar)ch>=SP) {
ch=text[YN][3];
if(ch==0) ch='X';
if(text[YN][2]==0 || ch==0) ch='X';
}
if(ch==FF && useron.misc&ANSI) {
putcom("\x1b[2J\x1b[H"); /* clear screen, home cursor */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment