diff options
author | dm <dm@cvs.openbsd.org> | 1996-07-19 23:00:09 +0000 |
---|---|---|
committer | dm <dm@cvs.openbsd.org> | 1996-07-19 23:00:09 +0000 |
commit | c8821dcbdaec826ebc634f789517843da935d717 (patch) | |
tree | 90ba0afd36dd1b3e27cd657a0ec01ee7469786cf | |
parent | cfce83e61df9b38b330e1a9c4514b992aee48671 (diff) |
Got rid of blinking square in the screen saver (it prevented fancy monitors
from going into power-saving mode).
-rw-r--r-- | sys/arch/i386/isa/pccons.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/pccons.c b/sys/arch/i386/isa/pccons.c index 43aad7f3fbd..27facb21d80 100644 --- a/sys/arch/i386/isa/pccons.c +++ b/sys/arch/i386/isa/pccons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccons.c,v 1.20 1996/07/16 10:58:34 deraadt Exp $ */ +/* $OpenBSD: pccons.c,v 1.21 1996/07/19 23:00:08 dm Exp $ */ /* $NetBSD: pccons.c,v 1.99.4.1 1996/06/04 20:03:53 cgd Exp $ */ /*- @@ -981,9 +981,11 @@ screen_blank(arg) Crtat = screen_backup; crtat = Crtat + (crtat - saved_Crtat); +#if 0 /* write a little blinking square to bootom, left */ saved_Crtat[(ROW - 1)*COL] = ((FG_BLINK | FG_LIGHTGREY | BG_BLACK) << 8) | 220; +#endif screen_saved = 1; } } |