Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d8935f10
Commit
d8935f10
authored
Jan 03, 1999
by
Joseph Pranevich
Committed by
Alexandre Julliard
Jan 03, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not advance the cursor in certain routines. This cleaned up the
implementation quite a bit.
parent
3aa839f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
12 deletions
+7
-12
int10.c
msdos/int10.c
+7
-12
No files found.
msdos/int10.c
View file @
d8935f10
...
...
@@ -405,13 +405,13 @@ void WINAPI INT_Int10Handler( CONTEXT *context )
static
void
write_char_attribute_at_cursor
(
char
output
,
char
page_num
,
char
attribute
,
short
times
)
{
/* !NOTE!: */
/* It appears that the cursor should not be advanced if times > 1 */
/* I will triple check this later but bzork.exe definately points this */
/* way */
/* Contrary to the interrupt list, this routine should not advance
the cursor. To keep this logic simple, we won't use the
CONSOLE_Put() routine.
*/
int
wattribute
,
fg_color
,
bg_color
;
char
x
,
y
;
int
must_reset
=
0
;
if
(
page_num
)
/* Only support one text page right now */
{
...
...
@@ -423,11 +423,7 @@ static void write_char_attribute_at_cursor(char output, char page_num,
fg_color
=
conv_text_mode_attribute_fg_color
(
attribute
);
bg_color
=
conv_text_mode_attribute_bg_color
(
attribute
);
if
(
times
>
1
)
{
must_reset
=
1
;
CONSOLE_GetCursorPosition
(
&
x
,
&
y
);
}
CONSOLE_GetCursorPosition
(
&
x
,
&
y
);
while
(
times
)
{
...
...
@@ -435,8 +431,7 @@ static void write_char_attribute_at_cursor(char output, char page_num,
times
--
;
}
if
(
must_reset
)
CONSOLE_MoveCursor
(
x
,
y
);
CONSOLE_MoveCursor
(
x
,
y
);
}
static
int
conv_text_mode_attribute_fg_color
(
char
attribute
)
...
...
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