winedos: Remove unneeded address-of operators from array names.
This commit is contained in:
parent
0064976d54
commit
9c6b1fee38
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue