Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/wsfont Correct flipped glyph of 'N' in the "New Line...
details: https://anonhg.NetBSD.org/src/rev/ad997eacecfb
branches: trunk
changeset: 367674:ad997eacecfb
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Tue Jun 21 15:40:20 2022 +0000
description:
Correct flipped glyph of 'N' in the "New Line" in the DEC graphics chars.
diffstat:
sys/arch/atari/dev/font_8x16.c | 6 +++---
sys/dev/wsfont/vt220iso8x16.h | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (48 lines):
diff -r 39c53748368c -r ad997eacecfb sys/arch/atari/dev/font_8x16.c
--- a/sys/arch/atari/dev/font_8x16.c Tue Jun 21 12:45:46 2022 +0000
+++ b/sys/arch/atari/dev/font_8x16.c Tue Jun 21 15:40:20 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: font_8x16.c,v 1.4 2005/12/11 12:16:54 christos Exp $ */
+/* $NetBSD: font_8x16.c,v 1.5 2022/06/21 15:40:20 tsutsui Exp $ */
/*
* Copyright (c) 1992, 1993, 1994 Hellmuth Michaelis and Joerg Wunsch
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: font_8x16.c,v 1.4 2005/12/11 12:16:54 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: font_8x16.c,v 1.5 2022/06/21 15:40:20 tsutsui Exp $");
#include <atari/dev/font.h>
@@ -72,7 +72,7 @@
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* 0x08 */ 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, 0x18,
0x18, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00,
-/* 0x09 */ 0x00, 0x00, 0x88, 0x98, 0xa8, 0xc8, 0x88, 0x00,
+/* 0x09 */ 0x00, 0x00, 0x88, 0xc8, 0xa8, 0x98, 0x88, 0x00,
0x10, 0x10, 0x10, 0x10, 0x1e, 0x00, 0x00, 0x00,
/* 0x0a */ 0x00, 0x00, 0x88, 0x88, 0x50, 0x50, 0x20, 0x00,
0x3e, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00, 0x00,
diff -r 39c53748368c -r ad997eacecfb sys/dev/wsfont/vt220iso8x16.h
--- a/sys/dev/wsfont/vt220iso8x16.h Tue Jun 21 12:45:46 2022 +0000
+++ b/sys/dev/wsfont/vt220iso8x16.h Tue Jun 21 15:40:20 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vt220iso8x16.h,v 1.7 2005/12/11 12:24:12 christos Exp $ */
+/* $NetBSD: vt220iso8x16.h,v 1.8 2022/06/21 15:40:20 tsutsui Exp $ */
/*
* Copyright (c) 1992, 1993, 1994 Hellmuth Michaelis and Joerg Wunsch
@@ -226,9 +226,9 @@
0x00, /* ........ */
0x00, /* ........ */
0x88, /* *...*... */
- 0x98, /* *..**... */
+ 0xc8, /* **..*... */
0xa8, /* *.*.*... */
- 0xc8, /* **..*... */
+ 0x98, /* *..**... */
0x88, /* *...*... */
0x00, /* ........ */
0x10, /* ...*.... */
Home |
Main Index |
Thread Index |
Old Index