Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
23006c35
Commit
23006c35
authored
1 year ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Apparently Borland actually used 'enum text_modes' in conio.h. Follow suit.
*This* is the way. Oops.
parent
337743ed
No related branches found
No related tags found
No related merge requests found
Pipeline
#5790
passed
1 year ago
Stage: build
Stage: test
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/conio/ciolib.h
+1
-1
1 addition, 1 deletion
src/conio/ciolib.h
src/sbbs3/echocfg.c
+1
-1
1 addition, 1 deletion
src/sbbs3/echocfg.c
src/sbbs3/scfg/scfg.c
+1
-1
1 addition, 1 deletion
src/sbbs3/scfg/scfg.c
with
3 additions
and
3 deletions
src/conio/ciolib.h
+
1
−
1
View file @
23006c35
...
...
@@ -116,7 +116,7 @@ enum {
#define CIOLIB_VIDEO_EXPAND (1<<5) // Use an extra blank column between characters from the font
#define CIOLIB_VIDEO_LINE_GRAPHICS_EXPAND (1<<6) // Per VGA, when using CIOLIB_VIDEO_EXPAND, repeat the last column for chars 0xC0 - 0xDF inclusive
enum
text_mode
enum
text_mode
s
{
/* DOS-compatible modes */
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/echocfg.c
+
1
−
1
View file @
23006c35
...
...
@@ -721,7 +721,7 @@ int main(int argc, char **argv)
struct
robot
saverobot
;
BOOL
door_mode
=
FALSE
;
int
ciolib_mode
=
CIOLIB_MODE_AUTO
;
enum
text_mode
video_mode
=
LCD80X25
;
enum
text_mode
s
video_mode
=
LCD80X25
;
unsigned
int
u
;
char
sysop_aliases
[
256
];
sbbsecho_cfg_t
orig_cfg
;
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/scfg/scfg.c
+
1
−
1
View file @
23006c35
...
...
@@ -406,7 +406,7 @@ int main(int argc, char **argv)
bool
door_mode
=
false
;
bool
alt_chars
=
false
;
int
ciolib_mode
=
CIOLIB_MODE_AUTO
;
enum
text_mode
video_mode
=
LCD80X25
;
enum
text_mode
s
video_mode
=
LCD80X25
;
#if defined(_WIN32)
cio_api
.
options
|=
CONIO_OPT_DISABLE_CLOSE
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment