Skip to content
This repository was archived by the owner on Aug 28, 2020. It is now read-only.

Commit b2537e0

Browse files
Disable the Multi Language stuff for now.
1 parent 1d74a35 commit b2537e0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

3ds/source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ int main()
199199
}
200200

201201
Config::loadConfig();
202-
Lang::loadLangStrings(Config::Language);
202+
Lang::loadLangStrings(1);
203203

204204
if (isCitra == false) {
205205
mcuInit();

3ds/source/screens/settingsScreen.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ extern bool touching(touchPosition touch, Structs::ButtonPos button);
4848
std::string layoutModes[] = {"Bars", "Bars2"};
4949
std::string layout2Modes[] = {"BG1", "BG2", "BG3"};
5050
std::string Selectors[] = {"Selector1", "Selector2", "Selector3"};
51-
std::string Language[] = {"Deutsch", "English", "Español", "Français", "Italiano", "日本語", "Lietuvių", "Português"};
51+
// std::string Language[] = {"Deutsch", "English", "Español", "Français", "Italiano", "日本語", "Lietuvių", "Português"};
5252

5353
int ColorHelper::getColorValue(int color, int bgr)
5454
{
@@ -121,8 +121,8 @@ void Settings::DrawBottom(void) const
121121
Gui::DrawString(110, 38, 0.65f, WHITE, "Music Mode:");
122122

123123
// Languages.
124-
Gui::sprite(3, button_updater_idx, 17, 31);
125-
Gui::DrawString(23, 40, 0.7f, WHITE, Language[Config::Language].c_str(), 85);
124+
// Gui::sprite(3, button_updater_idx, 17, 31);
125+
// Gui::DrawString(23, 40, 0.7f, WHITE, Language[Config::Language].c_str(), 85);
126126

127127

128128
} else if (SettingsPage == 2) {
@@ -284,10 +284,10 @@ void Settings::TouchLogic(u32 hDown, touchPosition touch)
284284
Config::musicMode++;
285285
if (Config::musicMode > 2) Config::musicMode = 0;
286286

287-
} else if (touching(touch, uiSettingsButtonPos[14])) {
288-
Config::Language++;
289-
if (Config::Language > 7) Config::Language = 0;
290-
Config::setLang();
287+
// } else if (touching(touch, uiSettingsButtonPos[14])) {
288+
// Config::Language++;
289+
// if (Config::Language > 7) Config::Language = 0;
290+
// Config::setLang();
291291
}
292292

293293

0 commit comments

Comments
 (0)