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
7c8ac0e0
Commit
7c8ac0e0
authored
Jan 20, 2008
by
deuce
Browse files
Remove 132x21 mode since we require at least 24 rows.
parent
66eab6b8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
6 deletions
+1
-6
src/syncterm/bbslist.c
src/syncterm/bbslist.c
+1
-1
src/syncterm/bbslist.h
src/syncterm/bbslist.h
+0
-1
src/syncterm/syncterm.c
src/syncterm/syncterm.c
+0
-4
No files found.
src/syncterm/bbslist.c
View file @
7c8ac0e0
...
...
@@ -176,7 +176,7 @@ int sortorder[sizeof(sort_order)/sizeof(struct sort_order_info)];
char
*
sort_orders
[]
=
{
"BBS Name"
,
"Address"
,
"Connection Type"
,
"Port"
,
"Date Added"
,
"Date Last Connected"
};
char
*
screen_modes
[]
=
{
"Current"
,
"80x25"
,
"80x28"
,
"80x43"
,
"80x50"
,
"80x60"
,
"132x21"
,
"132x25"
,
"132x28"
,
"132x30"
,
"132x34"
,
"132x43"
,
"132x50"
,
"132x60"
,
"C64"
,
"C128 (40col)"
,
"C128 (80col)"
,
"Atari"
,
NULL
};
char
*
screen_modes
[]
=
{
"Current"
,
"80x25"
,
"80x28"
,
"80x43"
,
"80x50"
,
"80x60"
,
"132x25"
,
"132x28"
,
"132x30"
,
"132x34"
,
"132x43"
,
"132x50"
,
"132x60"
,
"C64"
,
"C128 (40col)"
,
"C128 (80col)"
,
"Atari"
,
NULL
};
char
*
log_levels
[]
=
{
"Emergency"
,
"Alert"
,
"Critical"
,
"Error"
,
"Warning"
,
"Notice"
,
"Info"
,
"Debug"
,
NULL
};
char
*
log_level_desc
[]
=
{
"None"
,
"Alerts"
,
"Critical Errors"
,
"Errors"
,
"Warnings"
,
"Notices"
,
"Normal"
,
"All (Debug)"
,
NULL
};
...
...
src/syncterm/bbslist.h
View file @
7c8ac0e0
...
...
@@ -38,7 +38,6 @@ enum {
,
SCREEN_MODE_80X43
,
SCREEN_MODE_80X50
,
SCREEN_MODE_80X60
,
SCREEN_MODE_132X21
,
SCREEN_MODE_132X25
,
SCREEN_MODE_132X28
,
SCREEN_MODE_132X30
...
...
src/syncterm/syncterm.c
View file @
7c8ac0e0
...
...
@@ -1328,8 +1328,6 @@ int screen_to_ciolib(int screen)
return
(
C80X50
);
case
SCREEN_MODE_80X60
:
return
(
C80X60
);
case
SCREEN_MODE_132X21
:
return
(
VESA_132X21
);
case
SCREEN_MODE_132X25
:
return
(
VESA_132X25
);
case
SCREEN_MODE_132X28
:
...
...
@@ -1372,8 +1370,6 @@ int ciolib_to_screen(int ciolib)
return
(
SCREEN_MODE_80X50
);
case
C80X60
:
return
(
SCREEN_MODE_80X60
);
case
VESA_132X21
:
return
(
SCREEN_MODE_132X21
);
case
VESA_132X25
:
return
(
SCREEN_MODE_132X25
);
case
VESA_132X28
:
...
...
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