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

Don't prompt UTF-8 terminal users to ask if they support CP437.

parent 84e5289d
Branches
Tags
No related merge requests found
......@@ -969,7 +969,7 @@ void sbbs_t::maindflts(user_t* user)
if(sys_status&SS_ABORT)
break;
if(!(term&PETSCII)) {
if(!(user->misc&UTF8) && !yesno(text[ExAsciiTerminalQ]))
if(!(term&UTF8) && !yesno(text[ExAsciiTerminalQ]))
user->misc|=NO_EXASCII;
else
user->misc&=~NO_EXASCII;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment