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)
This commit is contained in:
tsutsui 2010-07-21 12:10:18 +00:00
parent 2e713bc4b4
commit ab111ed11d
1 changed files with 2 additions and 2 deletions

View File

@ -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 */
};