Module Name: src
Committed By: tsutsui
Date: Wed Jul 21 12:10:18 UTC 2010
Modified Files:
src/sys/dev/wsfont: vt220l8x16.h
Log Message:
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)
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/wsfont/vt220l8x16.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/wsfont/vt220l8x16.h
diff -u src/sys/dev/wsfont/vt220l8x16.h:1.6 src/sys/dev/wsfont/vt220l8x16.h:1.7
--- src/sys/dev/wsfont/vt220l8x16.h:1.6 Sun Dec 11 12:24:12 2005
+++ src/sys/dev/wsfont/vt220l8x16.h Wed Jul 21 12:10:18 2010
@@ -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 @@
16, /* height */
1, /* stride */
WSDISPLAY_FONTORDER_L2R, /* bit order */
- 0, /* byte order */
+ WSDISPLAY_FONTORDER_L2R, /* byte order */
vt220l8x16_data /* data */
};