Main: Explicitly use the HTTPS site URL.

This commit is contained in:
Lioncash 2014-11-06 21:34:38 -05:00
parent f6b4b4dbba
commit 7a1dca993f
1 changed files with 2 additions and 2 deletions

View File

@ -286,11 +286,11 @@ bool DolphinApp::OnInit()
File::Delete("www.dolphin-emulator.com.txt");
wxMessageDialog dlg(nullptr, _(
"This version of Dolphin was downloaded from a website stealing money from developers of the emulator. Please "
"download Dolphin from the official website instead: http://dolphin-emu.org/"),
"download Dolphin from the official website instead: https://dolphin-emu.org/"),
_("Unofficial version detected"), wxOK | wxICON_WARNING);
dlg.ShowModal();
wxLaunchDefaultBrowser("http://dolphin-emu.org/?ref=badver");
wxLaunchDefaultBrowser("https://dolphin-emu.org/?ref=badver");
exit(0);
}