From 16e84aa41230c89576372309dda1a8dc12995516 Mon Sep 17 00:00:00 2001 From: VoltZ <47382115+SuperSaiyajinVoltZ@users.noreply.github.com> Date: Sun, 3 Nov 2019 07:16:46 +0100 Subject: [PATCH] The Language Screen should work properly now. --- source/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index a997249..415f824 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -67,7 +67,7 @@ int main() if(access("sdmc:/3ds/Universal-Updater/Settings.ini", F_OK) == -1 ) { Config::saveConfig(); } - Lang::load(1); + Lang::load(Config::lang); Gui::setScreen(std::make_unique()); osSetSpeedupEnable(true); // Enable speed-up for New 3DS users @@ -92,4 +92,4 @@ int main() romfsExit(); sdmcExit(); return 0; -} \ No newline at end of file +}