Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main: Explicitly use the HTTPS site URL. #1511

Merged
merged 1 commit into from Nov 7, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Source/Core/DolphinWX/Main.cpp
Expand Up @@ -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);
}
Expand Down