diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-05-10 05:35:15 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-05-10 05:35:15 +0000 |
commit | a9d28d84b245ce8ea8250a7ea6b84d44865b7318 (patch) | |
tree | 3ccbe710dba676e4c4359997a19a12f7f1d21dc7 /sys | |
parent | 7dbfa470079c34d3402eb779e46a7135f141faeb (diff) |
Select the Latin-1 8x16 font as the default 8x16 font, instead of the
IBM 8x16 one.
ok deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/wsfont/wsfont.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/wsfont/wsfont.c b/sys/dev/wsfont/wsfont.c index 95ae43e694c..f3e8aef1b8c 100644 --- a/sys/dev/wsfont/wsfont.c +++ b/sys/dev/wsfont/wsfont.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsfont.c,v 1.8 2003/05/10 18:30:21 miod Exp $ */ +/* $OpenBSD: wsfont.c,v 1.9 2004/05/10 05:35:14 miod Exp $ */ /* $NetBSD: wsfont.c,v 1.17 2001/02/07 13:59:24 ad Exp $ */ /*- @@ -87,16 +87,16 @@ #include <dev/wsfont/omron12x20.h> #endif -#ifdef FONT_BOLD8x16_ISO1 +#ifdef FONT_BOLD8x16 #define HAVE_FONT 1 -#include <dev/wsfont/bold8x16-iso1.h> +#include <dev/wsfont/bold8x16.h> #endif #ifdef FONT_GALLANT12x22 #define HAVE_FONT 1 #endif -#ifdef FONT_BOLD8x16 +#ifdef FONT_BOLD8x16_ISO1 #define HAVE_FONT 1 #endif @@ -107,10 +107,10 @@ #if defined(__sparc64__) #define FONT_GALLANT12x22 #else -#define FONT_BOLD8x16 1 +#define FONT_BOLD8x16_ISO1 1 #endif #else /* SMALL_KERNEL */ -#define FONT_BOLD8x16 1 +#define FONT_BOLD8x16_ISO1 1 /* Add the gallant 12x22 font for high screen resolutions */ #if !defined(FONT_GALLANT12x22) #define FONT_GALLANT12x22 @@ -118,8 +118,8 @@ #endif /* SMALL_KERNEL */ #endif /* HAVE_FONT */ -#ifdef FONT_BOLD8x16 -#include <dev/wsfont/bold8x16.h> +#ifdef FONT_BOLD8x16_ISO1 +#include <dev/wsfont/bold8x16-iso1.h> #endif #ifdef FONT_GALLANT12x22 |