Skip to content
Snippets Groups Projects
Commit c5f547bf authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't prompt for ex-ASCII support when UTF8 auto-detected

UTF8 includes all ex-ASCII (CP437) chars, so no need to prompt for this
parent 75fae15f
Branches
No related tags found
No related merge requests found
...@@ -153,7 +153,7 @@ bool sbbs_t::newuser() ...@@ -153,7 +153,7 @@ bool sbbs_t::newuser()
autoterm |= PETSCII; autoterm |= PETSCII;
term_out(PETSCII_UPPERLOWER); term_out(PETSCII_UPPERLOWER);
bputs(text[PetTerminalDetected]); bputs(text[PetTerminalDetected]);
} else { } else if (!(useron.misc & UTF8)) {
if (!yesno(text[ExAsciiTerminalQ])) if (!yesno(text[ExAsciiTerminalQ]))
useron.misc |= NO_EXASCII; useron.misc |= NO_EXASCII;
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment