aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorSøren Schmidt <sos@FreeBSD.org>1995-02-14 14:37:53 +0000
committerSøren Schmidt <sos@FreeBSD.org>1995-02-14 14:37:53 +0000
commit314908fae3e7e58088965f549bf328e9649e3bd6 (patch)
tree67e946b0aa76d85d3df02449e458fab471187d63 /sys/dev
parent47d5df1d7d0259729fe1e627e3af2135ca788db5 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/syscons/syscons.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c
index ea4df43151a83..24a952c0d3d82 100644
--- a/sys/dev/syscons/syscons.c
+++ b/sys/dev/syscons/syscons.c
@@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: syscons.c,v 1.97 1995/01/30 21:36:28 sos Exp $
+ * $Id: syscons.c,v 1.101 1995/02/07 11:53:27 sos Exp $
*/
#include "sc.h"
@@ -2125,10 +2125,10 @@ draw_cursor(scr_stat *scp, int show)
if ((cursor_image & 0x7000) == 0x7000) {
cursor_image &= 0x8fff;
if(!(cursor_image & 0x0700))
- cursor_image |= 0x0f00;
+ cursor_image |= 0x0700;
} else {
cursor_image |= 0x7000;
- if ((cursor_image & 0x0f00) == 0x0f00)
+ if ((cursor_image & 0x0700) == 0x0700)
cursor_image &= 0xf0ff;
}
}