Base: Add Csilla Bold 7x10 variant.

It's nice to have a thin and a bold variant to complement each other.
This commit is contained in:
Andreas Kling 2019-03-01 02:50:50 +01:00
commit b5e5f26a82
Notes: sideshowbarker 2024-07-19 15:34:52 +09:00
4 changed files with 11 additions and 1 deletions

View file

@ -33,7 +33,7 @@ Font& Font::default_font()
Font& Font::default_bold_font()
{
static const char* default_bold_font_path = "/res/fonts/LizaBold8x10.font";
static const char* default_bold_font_path = "/res/fonts/CsillaBold7x10.font";
if (!s_default_bold_font) {
s_default_bold_font = Font::load_from_file(default_bold_font_path).leak_ref();
ASSERT(s_default_bold_font);