Fixed tone letter font

This commit is contained in:
Willem 2022-02-04 23:57:52 +01:00
parent 23dc554743
commit 1efc29b370
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -45,6 +45,7 @@ public class ImGuiSetup {
io.getFonts().addFontFromMemoryTTF(Gdx.files.internal("font/NotoSansCJKjp-Medium.otf").readBytes(), 14, fontConfig, glyphRanges);
io.getFonts().addFontFromMemoryTTF(Gdx.files.internal("font/FreeSans.ttf").readBytes(), 14, fontConfig, glyphRanges);
io.getFonts().addFontFromMemoryTTF(Gdx.files.internal("font/roboto-bold.ttf").readBytes(), 14, fontConfig, glyphRanges);
fontConfig.destroy();
}