Skip to content
Snippets Groups Projects
Commit efca4999 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Remove -iWF as an option in SyncTERM

Full-screen console doesn't scale anymore on modern Windows, so this
flag is worse than useless.
parent f7a7f3e9
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4187 failed
...@@ -102,7 +102,7 @@ char *usage = ...@@ -102,7 +102,7 @@ char *usage =
" I = Curses mode with forced ASCII charset\n" " I = Curses mode with forced ASCII charset\n"
" F = Curses mode with forced IBM charset\n" " F = Curses mode with forced IBM charset\n"
#else #else
" W[F] = Win32 console (text) mode, F for fullscreen\n" " W = Win32 console (text) mode\n"
" G = Win32 GDI (graphics) mode\n" " G = Win32 GDI (graphics) mode\n"
#endif #endif
" A = ANSI mode\n" " A = ANSI mode\n"
...@@ -1619,11 +1619,6 @@ main(int argc, char **argv) ...@@ -1619,11 +1619,6 @@ main(int argc, char **argv)
break; break;
case 'W': case 'W':
ciolib_mode = CIOLIB_MODE_CONIO; ciolib_mode = CIOLIB_MODE_CONIO;
switch (toupper(argv[i][3])) {
case 'F':
ciolib_mode = CIOLIB_MODE_CONIO_FULLSCREEN;
break;
}
break; break;
case 'S': case 'S':
switch (toupper(argv[i][3])) { switch (toupper(argv[i][3])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment