Skip to content
Snippets Groups Projects
Commit 160313c5 authored by rswindell's avatar rswindell
Browse files

Added QWK config menu option to toggle QWK_EXT flag.

parent 14255dcb
No related branches found
No related tags found
No related merge requests found
......@@ -476,6 +476,9 @@ void sbbs_t::qwk_sec()
bprintf("\1hV\1n) %-30s: \1h%s\1n\r\n"
,"Include Message Path (VIA)"
,useron.qwk&QWK_VIA ? text[Yes]:text[No]);
bprintf("\1hX\1n) %-30s: \1h%s\1n\r\n"
,"Extended (QWKE) Packet Format"
,useron.qwk&QWK_EXT ? text[Yes]:text[No]);
bputs(text[UserDefaultsWhich]);
ch=(char)getkeys("AQEDFIOQTYNCZV",0);
if(sys_status&SS_ABORT || !ch || ch=='Q')
......@@ -530,7 +533,11 @@ void sbbs_t::qwk_sec()
break;
case 'Y': /* Yourself */
useron.qwk^=QWK_BYSELF;
break; }
break;
case 'X': /* QWKE */
useron.qwk^=QWK_EXT;
break;
}
putuserrec(&cfg,useron.number,U_QWK,8,ultoa(useron.qwk,str,16)); }
delfiles(cfg.temp_dir,ALLFILES);
continue; }
......
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