replace leading tabs in several more files
This commit is contained in:
@@ -181,23 +181,23 @@ static int viewport_size = 40;
|
||||
/* static char bittable[8]= {0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80}; */
|
||||
#if 0
|
||||
static char defpalette[] = { /* Default VGA palette */
|
||||
0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0xaa,
|
||||
0x00, 0xaa, 0x00,
|
||||
0x00, 0xaa, 0xaa,
|
||||
0xaa, 0x00, 0x00,
|
||||
0xaa, 0x00, 0xaa,
|
||||
0xaa, 0xaa, 0x00,
|
||||
0xaa, 0xaa, 0xaa,
|
||||
0x55, 0x55, 0x55,
|
||||
0xcc, 0xcc, 0xcc,
|
||||
0x00, 0x00, 0xff,
|
||||
0x00, 0xff, 0x00,
|
||||
0xff, 0x00, 0x00,
|
||||
0xff, 0xff, 0x00,
|
||||
0xff, 0x00, 0xff,
|
||||
0xff, 0xff, 0xff
|
||||
};
|
||||
0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0xaa,
|
||||
0x00, 0xaa, 0x00,
|
||||
0x00, 0xaa, 0xaa,
|
||||
0xaa, 0x00, 0x00,
|
||||
0xaa, 0x00, 0xaa,
|
||||
0xaa, 0xaa, 0x00,
|
||||
0xaa, 0xaa, 0xaa,
|
||||
0x55, 0x55, 0x55,
|
||||
0xcc, 0xcc, 0xcc,
|
||||
0x00, 0x00, 0xff,
|
||||
0x00, 0xff, 0x00,
|
||||
0xff, 0x00, 0x00,
|
||||
0xff, 0xff, 0x00,
|
||||
0xff, 0x00, 0xff,
|
||||
0xff, 0xff, 0xff
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifndef ALTERNATE_VIDEO_METHOD
|
||||
@@ -843,13 +843,13 @@ vga_Finish(void)
|
||||
static void
|
||||
vga_NoBorder(int bc)
|
||||
{
|
||||
union REGS regs;
|
||||
union REGS regs;
|
||||
|
||||
regs.h.ah = (char)0x10;
|
||||
regs.h.al = (char)0x01;
|
||||
regs.h.bh = (char)bc;
|
||||
regs.h.bl = 0;
|
||||
(void) int86(VIDEO_BIOS, ®s, ®s);
|
||||
regs.h.ah = (char)0x10;
|
||||
regs.h.al = (char)0x01;
|
||||
regs.h.bh = (char)bc;
|
||||
regs.h.bl = 0;
|
||||
(void) int86(VIDEO_BIOS, ®s, ®s);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user