The Language Screen should work properly now.

This commit is contained in:
VoltZ
2019-11-03 07:16:46 +01:00
committed by GitHub
parent 1a8c63d9d4
commit 16e84aa412
+2 -2
View File
@@ -67,7 +67,7 @@ int main()
if(access("sdmc:/3ds/Universal-Updater/Settings.ini", F_OK) == -1 ) { if(access("sdmc:/3ds/Universal-Updater/Settings.ini", F_OK) == -1 ) {
Config::saveConfig(); Config::saveConfig();
} }
Lang::load(1); Lang::load(Config::lang);
Gui::setScreen(std::make_unique<MainMenu>()); Gui::setScreen(std::make_unique<MainMenu>());
osSetSpeedupEnable(true); // Enable speed-up for New 3DS users osSetSpeedupEnable(true); // Enable speed-up for New 3DS users
@@ -92,4 +92,4 @@ int main()
romfsExit(); romfsExit();
sdmcExit(); sdmcExit();
return 0; return 0;
} }