diff options
author | 1996-07-19 23:00:08 +0000 | |
---|---|---|
committer | 1996-07-19 23:00:08 +0000 | |
commit | 2263c50e8c6b1dcfe7bfdb0310ec35b40d944a97 (patch) | |
tree | dd2cfcdb8b5b3c2b858c2efd2585fa4e0d39c434 | |
parent | add -I${.CURDIR} to get defs.h (diff) | |
download | wireguard-openbsd-2263c50e8c6b1dcfe7bfdb0310ec35b40d944a97.tar.xz wireguard-openbsd-2263c50e8c6b1dcfe7bfdb0310ec35b40d944a97.zip |
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; } } |