From 7a1dca993f0575686f61c825845bcc64fccb1971 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 6 Nov 2014 21:34:38 -0500 Subject: [PATCH] Main: Explicitly use the HTTPS site URL. --- Source/Core/DolphinWX/Main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinWX/Main.cpp b/Source/Core/DolphinWX/Main.cpp index 68c850ee892a..e879291c4e0d 100644 --- a/Source/Core/DolphinWX/Main.cpp +++ b/Source/Core/DolphinWX/Main.cpp @@ -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); }