diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-11-06 22:15:04 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-11-06 22:15:04 -0500 |
| commit | 1a214f7debea9e5d7e9839c98bc42a3d3176d64e (patch) | |
| tree | ed2d151885443c277dca2b4990904e934d3d81bf /Source/Core | |
| parent | fabfe1422efe517d70af92bbb7905cc990460cc7 (diff) | |
| parent | 7a1dca993f0575686f61c825845bcc64fccb1971 (diff) | |
Merge pull request #1511 from lioncash/https
Main: Explicitly use the HTTPS site URL.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/Main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Main.cpp b/Source/Core/DolphinWX/Main.cpp index 044a5951a8..9ce0c3628e 100644 --- a/Source/Core/DolphinWX/Main.cpp +++ b/Source/Core/DolphinWX/Main.cpp @@ -285,11 +285,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); } |
