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

Using 'N' (set new_install flag) command-line option automatically turns on 'F'

(force save).
parent 71f280e1
No related branches found
No related tags found
No related merge requests found
......@@ -105,6 +105,7 @@ int main(int argc, char **argv)
switch(toupper(argv[i][1])) {
case 'N': /* Set "New Installation" flag */
new_install=TRUE;
forcesave=TRUE;
continue;
case 'M': /* Monochrome mode */
uifc.mode|=UIFC_MONO;
......@@ -128,7 +129,7 @@ int main(int argc, char **argv)
all_msghdr=!all_msghdr;
break;
case 'F':
forcesave=!forcesave;
forcesave=TRUE;
break;
case 'L':
uifc.scrn_len=atoi(argv[i]+2);
......
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