Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/pmax/dev PMAX uses white-on-black for the default r...



details:   https://anonhg.NetBSD.org/src/rev/ab7c3c4f165f
branches:  trunk
changeset: 475823:ab7c3c4f165f
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Aug 26 20:49:40 1999 +0000

description:
PMAX uses white-on-black for the default rcons colors.

diffstat:

 sys/arch/pmax/dev/rcons.c |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (27 lines):

diff -r dd806ca7be83 -r ab7c3c4f165f sys/arch/pmax/dev/rcons.c
--- a/sys/arch/pmax/dev/rcons.c Thu Aug 26 20:48:09 1999 +0000
+++ b/sys/arch/pmax/dev/rcons.c Thu Aug 26 20:49:40 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rcons.c,v 1.31 1999/08/24 11:16:03 ad Exp $    */
+/*     $NetBSD: rcons.c,v 1.32 1999/08/26 20:49:40 thorpej Exp $       */
 
 /*
  * Copyright (c) 1995
@@ -165,6 +165,8 @@
        rc.rc_height = ri.ri_height;
        rc.rc_row = 0;
        rc.rc_col = 0;
+       rc.rc_deffgcolor = WSCOL_WHITE;
+       rc.rc_defbgcolor = WSCOL_BLACK;
        rcons_init(&rc, 1);
 }
 #endif
@@ -203,6 +205,8 @@
        rc.rc_maxrow = rows;
        rc.rc_row = 0;
        rc.rc_col = 0;
+       rc.rc_deffgcolor = WSCOL_WHITE;
+       rc.rc_defbgcolor = WSCOL_BLACK;
        rcons_init(&rc, 1);
 }
 #endif



Home | Main Index | Thread Index | Old Index