From 192e0875855fae1e25a415f6d1453afc8a92d72f Mon Sep 17 00:00:00 2001 From: ad Date: Wed, 12 Jan 2000 14:42:21 +0000 Subject: Make PCDISPLAY_SOFTCURSOR work as it should. --- sys/dev/ic/pcdisplay_subr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/ic/pcdisplay_subr.c b/sys/dev/ic/pcdisplay_subr.c index 25ea9b879ce..29d049de157 100644 --- a/sys/dev/ic/pcdisplay_subr.c +++ b/sys/dev/ic/pcdisplay_subr.c @@ -1,4 +1,4 @@ -/* $NetBSD: pcdisplay_subr.c,v 1.12 2000/01/05 16:14:35 ad Exp $ */ +/* $NetBSD: pcdisplay_subr.c,v 1.13 2000/01/12 14:42:21 ad Exp $ */ /* * Copyright (c) 1995, 1996 Carnegie-Mellon University. @@ -46,8 +46,8 @@ pcdisplay_cursor_init(scr) { #ifdef PCDISPLAY_SOFTCURSOR - pcdisplay_6845_write(scr->hdl, cursorh, 0x10); - pcdisplay_6845_write(scr->hdl, cursorl, 0x10); + pcdisplay_6845_write(scr->hdl, curstart, 0x10); + pcdisplay_6845_write(scr->hdl, curend, 0x10); #endif } -- cgit