diff options
Diffstat (limited to 'sys/dev/wsfont/spleen5x8.h')
-rw-r--r-- | sys/dev/wsfont/spleen5x8.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/dev/wsfont/spleen5x8.h b/sys/dev/wsfont/spleen5x8.h index 0bf8c79c0ae..4acb1f699aa 100644 --- a/sys/dev/wsfont/spleen5x8.h +++ b/sys/dev/wsfont/spleen5x8.h @@ -1,4 +1,4 @@ -/* $OpenBSD: spleen5x8.h,v 1.5 2020/06/21 19:03:29 fcambus Exp $ */ +/* $OpenBSD: spleen5x8.h,v 1.6 2020/06/23 13:58:34 fcambus Exp $ */ /* * Copyright (c) 2018-2019 Frederic Cambus <fcambus@openbsd.org> @@ -29,18 +29,18 @@ static u_char spleen5x8_data[]; struct wsdisplay_font spleen5x8 = { - "Spleen 5x8", /* typeface name */ - 0, /* index */ - ' ', /* firstchar */ - 128 - ' ', /* numchars */ - WSDISPLAY_FONTENC_ISO, /* encoding */ - 5, /* width */ - 8, /* height */ - 1, /* stride */ - WSDISPLAY_FONTORDER_L2R, /* bit order */ - WSDISPLAY_FONTORDER_L2R, /* byte order */ - NULL, /* cookie */ - spleen5x8_data /* data */ + .name = "Spleen 5x8", + .index = 0, + .firstchar = ' ', + .numchars = 128 - ' ', + .encoding = WSDISPLAY_FONTENC_ISO, + .fontwidth = 5, + .fontheight = 8, + .stride = 1, + .bitorder = WSDISPLAY_FONTORDER_L2R, + .byteorder = WSDISPLAY_FONTORDER_L2R, + .cookie = NULL, + .data = spleen5x8_data }; static u_char spleen5x8_data[] = { |