Update GameSettingsScreen.cpp

This commit is contained in:
MojoJojoDojo 2021-02-10 23:11:42 +02:00
parent 7095115d47
commit a9644413c8

View file

@ -768,7 +768,7 @@ void GameSettingsScreen::CreateViews() {
networkingSettings->Add(new ItemHeader(ms->T("Networking")));
networkingSettings->Add(new Choice(n->T("Adhoc Multiplayer forum")))->OnClick.Handle(this, &GameSettingsScreen::OnAdhocGuides);
networkingSettings->Add(new Choice(n->T("PPSSPP Ad-Hoc Wiki Page")))->OnClick.Handle(this, &GameSettingsScreen::OnAdhocGuides);
networkingSettings->Add(new CheckBox(&g_Config.bEnableWlan, n->T("Enable networking", "Enable networking/wlan (beta)")));
networkingSettings->Add(new ChoiceWithValueDisplay(&g_Config.sMACAddress, n->T("Change Mac Address"), (const char*)nullptr))->OnClick.Handle(this, &GameSettingsScreen::OnChangeMacAddress);
@ -1069,7 +1069,7 @@ void RecreateActivity() {
}
UI::EventReturn GameSettingsScreen::OnAdhocGuides(UI::EventParams &e) {
LaunchBrowser("https://forums.ppsspp.org/forumdisplay.php?fid=34");
LaunchBrowser("https://github.com/hrydgard/ppsspp/wiki/How-to-play-multiplayer-games-over-PPSSPP");
return UI::EVENT_DONE;
}