diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-01-06 00:49:42 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-01-06 00:49:42 +0000 |
commit | 2240730054e77f7393db56116441763af580042c (patch) | |
tree | 656668d2502be2a9aa8235900a6ac598e8d8e867 | |
parent | 111aa3c4b804ab2487c5874e1496719cc06569e4 (diff) |
Claim to support WSSCREEN_WSCOLORS (drivers support it, but rcons doesn't
appear to).
-rw-r--r-- | sys/dev/sbus/cgsix.c | 4 | ||||
-rw-r--r-- | sys/dev/sbus/cgthree.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/sbus/cgsix.c b/sys/dev/sbus/cgsix.c index cb7e5eb9039..b0dca8a2d63 100644 --- a/sys/dev/sbus/cgsix.c +++ b/sys/dev/sbus/cgsix.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cgsix.c,v 1.4 2002/01/04 19:39:06 jason Exp $ */ +/* $OpenBSD: cgsix.c,v 1.5 2002/01/06 00:49:41 jason Exp $ */ /* * Copyright (c) 2001 Jason L. Wright (jason@thought.net) @@ -137,7 +137,7 @@ struct wsscreen_descr cgsix_stdscreen = { 0, 0, /* will be filled in -- XXX shouldn't, it's global. */ 0, 0, 0, - WSSCREEN_REVERSE + WSSCREEN_REVERSE | WSSCREEN_WSCOLORS }; const struct wsscreen_descr *cgsix_scrlist[] = { diff --git a/sys/dev/sbus/cgthree.c b/sys/dev/sbus/cgthree.c index 518914c298b..d6379500055 100644 --- a/sys/dev/sbus/cgthree.c +++ b/sys/dev/sbus/cgthree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cgthree.c,v 1.4 2002/01/04 08:22:13 jason Exp $ */ +/* $OpenBSD: cgthree.c,v 1.5 2002/01/06 00:49:41 jason Exp $ */ /* * Copyright (c) 2001 Jason L. Wright (jason@thought.net) @@ -111,7 +111,7 @@ struct wsscreen_descr cgthree_stdscreen = { 0, 0, /* will be filled in -- XXX shouldn't, it's global. */ 0, 0, 0, - WSSCREEN_REVERSE + WSSCREEN_REVERSE | WSSCREEN_WSCOLORS }; const struct wsscreen_descr *cgthree_scrlist[] = { |