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

Continuation of previous commit (support for UART-only doors on Windows)

Needed the actually mapping of XTRN_UART -> EX_UART mode flag here.
parent 5b36ab9a
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2487 passed
......@@ -1585,6 +1585,8 @@ bool sbbs_t::exec_xtrn(uint xtrnnum)
mode|=EX_STDIO;
else if(cfg.xtrn[xtrnnum]->misc&XTRN_CONIO)
mode|=EX_CONIO;
else if(cfg.xtrn[xtrnnum]->misc&XTRN_UART)
mode|=EX_UART;
mode|=(cfg.xtrn[xtrnnum]->misc&(XTRN_CHKTIME|XTRN_NATIVE|XTRN_NOECHO|WWIVCOLOR));
if(cfg.xtrn[xtrnnum]->misc&MODUSERDAT) { /* Delete MODUSER.DAT */
SAFEPRINTF(str,"%sMODUSER.DAT",dropdir); /* if for some weird */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment