mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 19:05:52 +00:00
- Fixed minor bug in VGA driver.
svn path=/trunk/; revision=9033
This commit is contained in:
parent
57e1e034b8
commit
ba54c6c892
1 changed files with 6 additions and 0 deletions
|
@ -261,8 +261,14 @@ VGADDI_BltBrush(SURFOBJ* Dest, SURFOBJ* Source, SURFOBJ* MaskSurf,
|
|||
Video = (PUCHAR)vidmem + i * 80 + (Left >> 3);
|
||||
for (j = 0; j < Length; j++, Video++)
|
||||
{
|
||||
#if 0
|
||||
(VOID)READ_REGISTER_UCHAR(Video);
|
||||
WRITE_REGISTER_UCHAR(Video, 0xFF);
|
||||
#else
|
||||
char volatile Temp = *Video;
|
||||
Temp |= 0;
|
||||
*Video = 0xFF;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue