Convert UI fonts to WOFF2 (#647)

* Convert UI fonts to WOFF2

* ...except for the ones we use for ImGui
This commit is contained in:
doop
2026-05-03 22:36:55 -04:00
committed by GitHub
parent 6220990dc5
commit 6c27011e32
15 changed files with 7 additions and 7 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+7 -7
View File
@@ -32,13 +32,13 @@ bool initialize() noexcept {
return false;
}
load_font("FiraSans-Regular.ttf", true);
load_font("FiraSans-Bold.ttf");
load_font("FiraSansCondensed-Regular.ttf");
load_font("FiraSansCondensed-Bold.ttf");
load_font("AlegreyaSC-Regular.ttf");
load_font("AlegreyaSC-Bold.ttf");
load_font("MaterialSymbolsRounded-Regular.ttf");
load_font("FiraSans-Regular.woff2", true);
load_font("FiraSans-Bold.woff2");
load_font("FiraSansCondensed-Regular.woff2");
load_font("FiraSansCondensed-Bold.woff2");
load_font("AlegreyaSC-Regular.woff2");
load_font("AlegreyaSC-Bold.woff2");
load_font("MaterialSymbolsRounded-Regular.woff2");
sInitialized = true;
return true;