diff options
author | ru <ru@FreeBSD.org> | 2002-03-06 08:55:34 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-03-06 08:55:34 +0000 |
commit | 77922c96033bd5bc20628ac399b83499bf13ca95 (patch) | |
tree | 77d1ca29fe6e11e060eda48e510b4774c122c50d /sys/dev/syscons | |
parent | e2c6079333e440bdfb2d47e6696a8fda68ea81f2 (diff) | |
download | FreeBSD-src-77922c96033bd5bc20628ac399b83499bf13ca95.zip FreeBSD-src-77922c96033bd5bc20628ac399b83499bf13ca95.tar.gz |
Fixed compilation warnings.
Diffstat (limited to 'sys/dev/syscons')
-rw-r--r-- | sys/dev/syscons/scvgarndr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/syscons/scvgarndr.c b/sys/dev/syscons/scvgarndr.c index e14341f..0f9e2fb 100644 --- a/sys/dev/syscons/scvgarndr.c +++ b/sys/dev/syscons/scvgarndr.c @@ -140,6 +140,7 @@ RENDERER(vga, GRAPHICS_MODE, grrndrsw, vga_set); RENDERER_MODULE(vga, vga_set); #ifndef SC_NO_CUTPASTE +#if !defined(SC_ALT_MOUSE_IMAGE) || defined(SC_PIXEL_MODE) static u_short mouse_and_mask[16] = { 0xc000, 0xe000, 0xf000, 0xf800, 0xfc00, 0xfe00, 0xff00, 0xff80, 0xfe00, 0x1e00, 0x1f00, 0x0f00, 0x0f00, 0x0000, 0x0000, 0x0000 @@ -149,6 +150,7 @@ static u_short mouse_or_mask[16] = { 0x0c00, 0x0c00, 0x0600, 0x0600, 0x0000, 0x0000, 0x0000, 0x0000 }; #endif +#endif static void vga_nop(scr_stat *scp, ...) |