Skip to content
Snippets Groups Projects
Commit 8a71ab16 authored by rswindell's avatar rswindell
Browse files

2 fixes related to turning on the auto-terminal user setting:

- turn off the user.misc PETSCII flag (too)
- don't copy the current autoterm flags into user.misc - this should no longer
  be necessary since the correct way to detect current terminal capabiilites
  is via calls to term_supports().
parent 2b9b4014
No related branches found
No related tags found
No related merge requests found
......@@ -900,8 +900,7 @@ void sbbs_t::maindflts(user_t* user)
case 'T':
if(yesno(text[AutoTerminalQ])) {
user->misc|=AUTOTERM;
user->misc&=~(ANSI|RIP|WIP|HTML);
user->misc|=autoterm;
user->misc&=~(ANSI|RIP|WIP|HTML|PETSCII);
}
else
user->misc&=~AUTOTERM;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment