Use system region's font instead of always USA

This commit is contained in:
Pk11 2021-03-19 16:40:19 -05:00
commit 40b981f44a
2 changed files with 4 additions and 2 deletions

View file

@ -118,7 +118,9 @@ void Init::UnloadFont() {
Result Init::Initialize() {
gfxInitDefault();
romfsInit();
Gui::init();
u8 region;
CFGU_SecureInfoGetRegion(&region);
Gui::init((CFG_Region)region);
cfguInit();
ptmuInit();