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
63d3040f
Commit
63d3040f
authored
Mar 14, 1999
by
Ove Kaaven
Committed by
Alexandre Julliard
Mar 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a couple of ugly warnings (caused by ugly errors).
parent
8fc73123
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
int10.c
msdos/int10.c
+3
-3
No files found.
msdos/int10.c
View file @
63d3040f
...
...
@@ -684,12 +684,12 @@ else {
case
0x4f
:
/* Get SuperVGA INFORMATION */
{
BYTE
*
p
=
CTX_SEG_OFF_TO_LIN
(
context
,
ES_reg
(
context
),
DI_reg
(
context
));
BOOL16
vesa20
=
(
*
(
DWORD
*
)
p
==
"VBE2"
);
CTX_SEG_OFF_TO_LIN
(
context
,
ES_reg
(
context
),
E
DI_reg
(
context
));
/* BOOL16 vesa20 = (*(DWORD *)p == *(DWORD *)"VBE2"); */
TRACE
(
int10
,
"Get SuperVGA information
\n
"
);
AH_reg
(
context
)
=
0
;
*
(
WORD
*
)
p
=
"VESA"
;
*
(
DWORD
*
)
p
=
*
(
DWORD
*
)
"VESA"
;
*
(
WORD
*
)(
p
+
0x04
)
=
0x0200
;
/* VESA 2.0 */
*
(
DWORD
*
)(
p
+
0x06
)
=
NULL
;
/* pointer to OEM name */
*
(
DWORD
*
)(
p
+
0x0a
)
=
0xfffffffd
;
/* capabilities flags :-) */
...
...
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