Commit in reactos/drivers/video/displays/vga/objects on ros-branch-0_2_2
bitblt.c+61.1 -> 1.1.6.1
- Fixed minor bug in VGA driver.

reactos/drivers/video/displays/vga/objects
bitblt.c 1.1 -> 1.1.6.1
diff -u -r1.1 -r1.1.6.1
--- bitblt.c	10 Jan 2004 14:39:20 -0000	1.1
+++ bitblt.c	8 Apr 2004 15:53:44 -0000	1.1.6.1
@@ -261,8 +261,14 @@
       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
 	}
     }
 
CVSspam 0.2.8