Skip to content
Snippets Groups Projects
Commit 5d5cb934 authored by deuce's avatar deuce
Browse files

Fix initial setting of "Hide Status Line" option.

Was always forcing "No" as it was using a negated pointer.
parent 9d7cb171
No related branches found
No related tags found
No related merge requests found
......@@ -501,7 +501,7 @@ struct bbslist *show_bbslist(char* listpath, int mode, char *home)
"an extra line to the display (May cause problems with some BBS software)\n";
list[listcount-1]->nostatus=1;
uifc.list(WIN_MID|WIN_SAV,0,0,0,&list[listcount-1]->nostatus,NULL,"Hide Status Lines",YesNo);
list[listcount-1]->nostatus=!list[listcount-1];
list[listcount-1]->nostatus=!list[listcount-1]->nostatus;
add_bbs(listpath,list[listcount-1]);
sort_list(list);
for(j=0;list[j]->name[0];j++) {
......
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