Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ee0b5e69
Commit
ee0b5e69
authored
Apr 11, 1999
by
Andreas Mohr
Committed by
Alexandre Julliard
Apr 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed "Display Combination" call.
parent
eed04942
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
int10.c
msdos/int10.c
+6
-3
No files found.
msdos/int10.c
View file @
ee0b5e69
...
...
@@ -287,6 +287,9 @@ void WINAPI INT_Int10Handler( CONTEXT *context )
/* maby we should do this instead ? */
/* AH_reg(context = 0x001; not implemented so just fail */
break
;
case
0x09
:
/* SET PALETTE ENTRIES */
FIXME
(
int10
,
"VESA Set palette entries - not implemented
\n
"
);
break
;
case
0xff
:
/* Turn VESA ON/OFF */
/* i dont know what to do */
break
;
...
...
@@ -681,9 +684,9 @@ else {
switch
AL_reg
(
context
)
{
case
0x00
:
/* GET DISPLAY COMBINATION CODE */
TRACE
(
int10
,
"Get Display Combination Code
\n
"
);
A
L_reg
(
context
)
=
0x
1a
;
B
H
_reg
(
context
)
=
0x08
;
/* VGA w/ color analog display */
B
L
_reg
(
context
)
=
0x00
;
/* No secondary hardware */
A
X_reg
(
context
)
=
0x00
1a
;
B
L
_reg
(
context
)
=
0x08
;
/* VGA w/ color analog display */
B
H
_reg
(
context
)
=
0x00
;
/* No secondary hardware */
break
;
case
0x01
:
/* SET DISPLAY COMBINATION CODE */
FIXME
(
int10
,
"Set Display Combination Code - Not Supported
\n
"
);
...
...
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