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

Added support for -iI to force curses ASCII mode.

parent 84f686ee
No related branches found
No related tags found
No related merge requests found
......@@ -268,6 +268,9 @@ int main(int argc, char **argv)
case 'X':
ciolib_mode=CIOLIB_MODE_X;
break;
case 'I':
ciolib_mode=CIOLIB_MODE_CURSES_ASCII;
break;
#endif
case 'W':
ciolib_mode=CIOLIB_MODE_CONIO;
......@@ -309,6 +312,7 @@ int main(int argc, char **argv)
" X = X11 mode\n"
" C = Curses mode\n"
" F = Curses mode with forced IBM charset\n"
" I = Curses mode with forced ASCII charset\n"
#else
" W = Win32 native mode\n"
#endif
......
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