Bye mamario, you won't be missed

This commit is contained in:
Pierre Bourdon 2012-11-02 01:33:00 +01:00
parent 7b43e1869f
commit d13163380d
2 changed files with 2 additions and 2 deletions

View file

@ -1289,7 +1289,7 @@ void CFrame::OnHelp(wxCommandEvent& event)
}
break;
case IDM_HELPWEBSITE:
WxUtils::Launch("http://www.dolphin-emulator.com/");
WxUtils::Launch("http://dolphin-emu.org/");
break;
case IDM_HELPGOOGLECODE:
WxUtils::Launch("http://code.google.com/p/dolphin-emu/");

View file

@ -1055,7 +1055,7 @@ void CGameListCtrl::OnWiki(wxCommandEvent& WXUNUSED (event))
if (!iso)
return;
std::string wikiUrl = "http://api.dolphin-emulator.com/wiki.html?id=[GAME_ID]&name=[GAME_NAME]";
std::string wikiUrl = "http://wiki.dolphin-emu.org/dolphin-redirect.php?gameid=[GAME_ID]";
wikiUrl = ReplaceAll(wikiUrl, "[GAME_ID]", UriEncode(iso->GetUniqueID()));
if (UriEncode(iso->GetName(0)).length() < 100)
wikiUrl = ReplaceAll(wikiUrl, "[GAME_NAME]", UriEncode(iso->GetName(0)));