diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-04-07 22:05:48 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-04-07 22:05:48 +0200 |
commit | 49fe7b0dd02ecf09bd06bf29e051ac966e39581e (patch) | |
tree | c4e69ea369a7500b4d12f2071d3008e525b5b03a /sys/src/9/sgi | |
parent | 39c3bc277d2fc0756843c5e3fd82500df0c95dcd (diff) |
kernel: move arrow cursor definition to port/devmouse.c
Diffstat (limited to 'sys/src/9/sgi')
-rw-r--r-- | sys/src/9/sgi/screen.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sys/src/9/sgi/screen.c b/sys/src/9/sgi/screen.c index d98aec78e..6d1829315 100644 --- a/sys/src/9/sgi/screen.c +++ b/sys/src/9/sgi/screen.c @@ -430,20 +430,6 @@ struct Newport static Newport *regs = IO(Newport, GIO_NEWPORT); static Newport *regsgo = IO(Newport, GIO_NEWPORT|0x800); -Cursor arrow = { - { -1, -1 }, - { 0xFF, 0xFF, 0x80, 0x01, 0x80, 0x02, 0x80, 0x0C, - 0x80, 0x10, 0x80, 0x10, 0x80, 0x08, 0x80, 0x04, - 0x80, 0x02, 0x80, 0x01, 0x80, 0x02, 0x8C, 0x04, - 0x92, 0x08, 0x91, 0x10, 0xA0, 0xA0, 0xC0, 0x40, - }, - { 0x00, 0x00, 0x7F, 0xFE, 0x7F, 0xFC, 0x7F, 0xF0, - 0x7F, 0xE0, 0x7F, 0xE0, 0x7F, 0xF0, 0x7F, 0xF8, - 0x7F, 0xFC, 0x7F, 0xFE, 0x7F, 0xFC, 0x73, 0xF8, - 0x61, 0xF0, 0x60, 0xE0, 0x40, 0x40, 0x00, 0x00, - }, -}; - Memimage *gscreen; static Point curoff; |