From ab111ed11db1b4748adb7d9c8ee2122e04a4b173 Mon Sep 17 00:00:00 2001 From: tsutsui Date: Wed, 21 Jul 2010 12:10:18 +0000 Subject: [PATCH] Explicitly specify WSDISPLAY_FONTORDER_L2R for byte order even though this one has 8 bit (one byte) width, because rasops(4) seems to require it. (vga(4) on arc and shark doesn't require it) --- sys/dev/wsfont/vt220l8x16.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/wsfont/vt220l8x16.h b/sys/dev/wsfont/vt220l8x16.h index d3e540589be8..703065fcaac3 100644 --- a/sys/dev/wsfont/vt220l8x16.h +++ b/sys/dev/wsfont/vt220l8x16.h @@ -1,4 +1,4 @@ -/* $NetBSD: vt220l8x16.h,v 1.6 2005/12/11 12:24:12 christos Exp $ */ +/* $NetBSD: vt220l8x16.h,v 1.7 2010/07/21 12:10:18 tsutsui Exp $ */ /* * Copyright (c) 1992, 1995 Hellmuth Michaelis and Joerg Wunsch @@ -46,7 +46,7 @@ static struct wsdisplay_font vt220l8x16 = { 16, /* height */ 1, /* stride */ WSDISPLAY_FONTORDER_L2R, /* bit order */ - 0, /* byte order */ + WSDISPLAY_FONTORDER_L2R, /* byte order */ vt220l8x16_data /* data */ };