Commit 9c6b1fee authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

winedos: Remove unneeded address-of operators from array names.

parent 0064976d
...@@ -548,7 +548,7 @@ static BOOL INT10_FillModeInformation( struct _ModeInfoBlock *mib, WORD mode ) ...@@ -548,7 +548,7 @@ static BOOL INT10_FillModeInformation( struct _ModeInfoBlock *mib, WORD mode )
mib->MaxPixelClock = 0; /* FIXME */ mib->MaxPixelClock = 0; /* FIXME */
/* 66 - BYTE[190]: reserved, set to zero */ /* 66 - BYTE[190]: reserved, set to zero */
memset( &mib->Reserved4, 0, 190 ); memset( mib->Reserved4, 0, 190 );
return TRUE; return TRUE;
} }
......
...@@ -563,7 +563,7 @@ void VGA_Set16Palette(char *Table) ...@@ -563,7 +563,7 @@ void VGA_Set16Palette(char *Table)
int c; int c;
if (!lpddraw) return; /* return if we're in text only mode */ 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 */ for (c=0; c<17; c++) { /* 17 entries */
pal= &vga_def64_palette[(int)vga_16_palette[c]]; /* get color */ pal= &vga_def64_palette[(int)vga_16_palette[c]]; /* get color */
...@@ -577,7 +577,7 @@ void VGA_Get16Palette(char *Table) ...@@ -577,7 +577,7 @@ void VGA_Get16Palette(char *Table)
{ {
if (!lpddraw) return; /* return if we're in text only mode */ 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) void VGA_SetQuadPalette(RGBQUAD*color,int start,int len)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment