Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
44ce1250
Commit
44ce1250
authored
May 14, 2021
by
Deucе
👌🏾
Browse files
Prefer X11 mode over SDL mode
I do, so you should too!
parent
62b34c61
Pipeline
#2193
failed with stage
in 9 minutes and 2 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
src/conio/ciolib.c
src/conio/ciolib.c
+5
-5
src/syncterm/bbslist.c
src/syncterm/bbslist.c
+1
-1
src/syncterm/syncterm.c
src/syncterm/syncterm.c
+1
-1
No files found.
src/conio/ciolib.c
View file @
44ce1250
...
...
@@ -397,15 +397,15 @@ CIOLIBEXPORT int initciolib(int mode)
switch
(
mode
)
{
case
CIOLIB_MODE_AUTO
:
#ifndef NO_X
if
(
!
try_x_init
(
mode
))
#endif
#if defined(WITH_SDL)
if
(
!
try_sdl_init
(
CIOLIB_MODE_SDL
))
#endif
#ifdef _WIN32
if
(
!
try_conio_init
(
mode
))
#else
#ifndef NO_X
if
(
!
try_x_init
(
mode
))
#endif
if
(
!
try_curses_init
(
mode
))
#endif
try_ansi_init
(
mode
);
...
...
src/syncterm/bbslist.c
View file @
44ce1250
...
...
@@ -1699,7 +1699,7 @@ void change_settings(int connected)
#ifdef NO_X
" SDL, then Curses
\n\n
"
#else
" SDL,
X11
then Curses
\n\n
"
"
X11,
SDL, then Curses
\n\n
"
#endif
#else
" SDL, then Windows Console
\n\n
"
...
...
src/syncterm/syncterm.c
View file @
44ce1250
...
...
@@ -716,7 +716,7 @@ static const struct {
char
*
output_types
[]
=
{
"Autodetect"
#ifdef __unix__
" (
SDL, X11
, Curses)"
" (
X11, SDL
, Curses)"
#elif defined(_WIN32)
" (SDL, Console, ANSI)"
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment