diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-10-16 02:34:42 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-10-16 02:34:42 +0000 |
commit | 3465db04ba1ba4b9d66a74e34d2f2014433f866b (patch) | |
tree | c2cf1bede644f2ba57afd48ec7eb0bb3ab52c718 /sys/arch/i386 | |
parent | c2496a10353156e6e4e5ef9bfcef2c6cdb2e1e61 (diff) |
Initialize mouse_flags during the coldinit stage.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/isa/pcvt/pcvt_out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/pcvt/pcvt_out.c b/sys/arch/i386/isa/pcvt/pcvt_out.c index c832d3d4bcc..bb1bc2e47d5 100644 --- a/sys/arch/i386/isa/pcvt/pcvt_out.c +++ b/sys/arch/i386/isa/pcvt/pcvt_out.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcvt_out.c,v 1.27 2000/09/28 17:45:42 aaron Exp $ */ +/* $OpenBSD: pcvt_out.c,v 1.28 2000/10/16 02:34:41 aaron Exp $ */ /* * Copyright (c) 1992, 1995 Hellmuth Michaelis and Joerg Wunsch. @@ -1033,6 +1033,7 @@ vt_coldinit(void) svsp->scrr_beg = 0; /* scrolling region begin row*/ svsp->scrr_len = svsp->screen_rows; /* scrolling region length*/ svsp->scrr_end = svsp->scrr_len - 1;/* scrolling region end */ + svsp->mouse_flags = 0; /* mouse flags */ if(nscr == 0) { |