summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorrin <rin@NetBSD.org>2021-11-20 08:16:30 +0000
committerrin <rin@NetBSD.org>2021-11-20 08:16:30 +0000
commitbff7a8f978de128369aeb8a38b145d1f73d2de98 (patch)
tree0074801eacd51718fb3a1c030d0f7f5dd3a230e9 /sys/dev
parentfbffa918b6973bcd19dd0d65f4a9c01df9466d9a (diff)
Oops, forgot to commit builtin_fonts[] parts for Droid_Sans_Mono_10x20.
Noticed by RVP, thanks!
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/wsfont/wsfont.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/sys/dev/wsfont/wsfont.c b/sys/dev/wsfont/wsfont.c
index 02b067b8d14..d2acb51b6a0 100644
--- a/sys/dev/wsfont/wsfont.c
+++ b/sys/dev/wsfont/wsfont.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wsfont.c,v 1.75 2021/11/20 00:08:23 rin Exp $ */
+/* $NetBSD: wsfont.c,v 1.76 2021/11/20 08:16:30 rin Exp $ */
/*-
* Copyright (c) 1999, 2000, 2001, 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.75 2021/11/20 00:08:23 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.76 2021/11/20 08:16:30 rin Exp $");
#include "opt_wsfont.h"
@@ -281,12 +281,15 @@ static struct font builtin_fonts[] = {
#ifdef FONT_DEJAVU_SANS_MONO12x22
{ { NULL, NULL }, &DejaVu_Sans_Mono_12x22, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
#endif
-#ifdef FONT_DROID_SANS_MONO12x22
- { { NULL, NULL }, &Droid_Sans_Mono_12x22, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
-#endif
#ifdef FONT_DROID_SANS_MONO9x18
{ { NULL, NULL }, &Droid_Sans_Mono_9x18, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
#endif
+#ifdef FONT_DROID_SANS_MONO10x20
+ { { NULL, NULL }, &Droid_Sans_Mono_10x20, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
+#endif
+#ifdef FONT_DROID_SANS_MONO12x22
+ { { NULL, NULL }, &Droid_Sans_Mono_12x22, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
+#endif
#ifdef FONT_DROID_SANS_MONO19x36
{ { NULL, NULL }, &Droid_Sans_Mono_19x36, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
#endif