Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Software cursor is not enabled at boot time. Hard...



details:   https://anonhg.NetBSD.org/src/rev/e16025bda33b
branches:  trunk
changeset: 476548:e16025bda33b
user:      ad <ad%NetBSD.org@localhost>
date:      Sun Sep 19 22:57:24 1999 +0000

description:
Software cursor is not enabled at boot time. Hardware cursor is.

diffstat:

 sys/dev/ic/vga.c |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r 9d44d0cf0427 -r e16025bda33b sys/dev/ic/vga.c
--- a/sys/dev/ic/vga.c  Sun Sep 19 22:38:43 1999 +0000
+++ b/sys/dev/ic/vga.c  Sun Sep 19 22:57:24 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vga.c,v 1.18 1999/09/19 21:48:08 ad Exp $ */
+/* $NetBSD: vga.c,v 1.19 1999/09/19 22:57:24 ad Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -420,7 +420,11 @@
 
        scr->pcs.vc_crow = cpos / type->ncols;
        scr->pcs.vc_ccol = cpos % type->ncols;
+#ifdef PCDISPLAY_SOFTCURSOR
+       scr->pcs.cursoron = 0;
+#else
        scr->pcs.cursoron = 1;
+#endif
 
 #ifdef __alpha__
        if (!vc->hdl.vh_mono)



Home | Main Index | Thread Index | Old Index