diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-01-17 04:00:36 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-01-17 04:00:36 +0100 |
commit | 0c91d121f0b2c21df66d7e6cf780a8247632f607 (patch) | |
tree | c439468832f3935b63afdbacd5c299979720c2be /sys/src | |
parent | 66d0bb89a4cfdc68212e303ecbad94ef1967e2d6 (diff) |
igfx: fix wrong cursor position register address
Diffstat (limited to 'sys/src')
-rw-r--r-- | sys/src/cmd/aux/vga/igfx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/aux/vga/igfx.c b/sys/src/cmd/aux/vga/igfx.c index d1e5b15ef..9367d1788 100644 --- a/sys/src/cmd/aux/vga/igfx.c +++ b/sys/src/cmd/aux/vga/igfx.c @@ -297,7 +297,7 @@ snarfpipe(Igfx *igfx, int x) p->cur->cntr = snarfreg(igfx, 0x70080 + x*0x40); p->cur->base = snarfreg(igfx, 0x70084 + x*0x40); - p->cur->pos = snarfreg(igfx, 0x7008C + x*0x40); + p->cur->pos = snarfreg(igfx, 0x70088 + x*0x40); break; } } |