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
b4c47eab
Commit
b4c47eab
authored
Feb 05, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedos: Remove spaces before '\n's.
parent
d7033b4b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
vga.c
dlls/winedos/vga.c
+5
-5
No files found.
dlls/winedos/vga.c
View file @
b4c47eab
...
...
@@ -899,11 +899,11 @@ int VGA_SetMode(WORD mode)
/* check if mode is supported */
if
(
ModeInfo
->
Supported
)
{
FIXME
(
"Setting VGA mode %i - Supported mode - Improve reporting of missing capabilities for modes & modetypes.
\n
"
,
mode
);
FIXME
(
"Setting VGA mode %i - Supported mode - Improve reporting of missing capabilities for modes & modetypes.
\n
"
,
mode
);
}
else
{
FIXME
(
"Setting VGA mode %i - Unsupported mode - Will doubtfully work at all, but we'll try anyways.
\n
"
,
mode
);
FIXME
(
"Setting VGA mode %i - Unsupported mode - Will doubtfully work at all, but we'll try anyways.
\n
"
,
mode
);
}
/* set up graphic or text display */
...
...
@@ -1821,12 +1821,12 @@ void VGA_ioport_out( WORD port, BYTE val )
/* check bits 6 and 7 */
if
(
val
&
0xC0
)
{
FIXME
(
"Unsupported value, VGA register 0x3d8: 0x%02x - bits 7 and 6 not supported.
\n
"
,
val
);
FIXME
(
"Unsupported value, VGA register 0x3d8: 0x%02x - bits 7 and 6 not supported.
\n
"
,
val
);
}
/* check bits 5 - blink on */
if
(
val
&
0x20
)
{
FIXME
(
"Unsupported value, VGA register 0x3d8: 0x%02x (bit 5) - blink is not supported.
\n
"
,
val
);
FIXME
(
"Unsupported value, VGA register 0x3d8: 0x%02x (bit 5) - blink is not supported.
\n
"
,
val
);
}
/* Enable Video Signal (bit 3) - Set the enabled bit */
VGA_SetEnabled
((
val
&
0x08
)
&&
1
);
...
...
@@ -1882,7 +1882,7 @@ void VGA_ioport_out( WORD port, BYTE val )
/* unsupported mode */
else
{
FIXME
(
"Unsupported value, VGA register 0x3d8: 0x%02x - unrecognized MDA/CGA mode
\n
"
,
val
);
/* Set the enabled bit */
FIXME
(
"Unsupported value, VGA register 0x3d8: 0x%02x - unrecognized MDA/CGA mode
\n
"
,
val
);
/* Set the enabled bit */
}
break
;
...
...
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