Base: Import a new font, Csilla Thin (7x10).

I wanted to do a bitmap font with an odd number of columns for a while
and I finally got around to it. This really looks rather nice, so I'm
making it the default system font for now. :^)
This commit is contained in:
Andreas Kling 2019-03-01 01:51:16 +01:00
parent e6625755c9
commit 0776c51bf5
Notes: sideshowbarker 2024-07-19 15:34:55 +09:00
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -23,7 +23,7 @@ struct [[gnu::packed]] FontFileHeader {
Font& Font::default_font()
{
static const char* default_font_path = "/res/fonts/LizaRegular8x10.font";
static const char* default_font_path = "/res/fonts/CsillaThin7x10.font";
if (!s_default_font) {
s_default_font = Font::load_from_file(default_font_path).leak_ref();
ASSERT(s_default_font);