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
9c6b1fee
Commit
9c6b1fee
authored
Jul 11, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedos: Remove unneeded address-of operators from array names.
parent
0064976d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
int10.c
dlls/winedos/int10.c
+1
-1
vga.c
dlls/winedos/vga.c
+2
-2
No files found.
dlls/winedos/int10.c
View file @
9c6b1fee
...
...
@@ -548,7 +548,7 @@ static BOOL INT10_FillModeInformation( struct _ModeInfoBlock *mib, WORD mode )
mib
->
MaxPixelClock
=
0
;
/* FIXME */
/* 66 - BYTE[190]: reserved, set to zero */
memset
(
&
mib
->
Reserved4
,
0
,
190
);
memset
(
mib
->
Reserved4
,
0
,
190
);
return
TRUE
;
}
...
...
dlls/winedos/vga.c
View file @
9c6b1fee
...
...
@@ -563,7 +563,7 @@ void VGA_Set16Palette(char *Table)
int
c
;
if
(
!
lpddraw
)
return
;
/* return if we're in text only mode */
memcpy
(
Table
,
&
vga_16_palette
,
17
);
/* copy the entries into the table */
memcpy
(
Table
,
vga_16_palette
,
17
);
/* copy the entries into the table */
for
(
c
=
0
;
c
<
17
;
c
++
)
{
/* 17 entries */
pal
=
&
vga_def64_palette
[(
int
)
vga_16_palette
[
c
]];
/* get color */
...
...
@@ -577,7 +577,7 @@ void VGA_Get16Palette(char *Table)
{
if
(
!
lpddraw
)
return
;
/* return if we're in text only mode */
memcpy
(
&
vga_16_palette
,
Table
,
17
);
/* copy the entries into the table */
memcpy
(
vga_16_palette
,
Table
,
17
);
/* copy the entries into the table */
}
void
VGA_SetQuadPalette
(
RGBQUAD
*
color
,
int
start
,
int
len
)
...
...
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