summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-02-10 13:14:47 +0100
committerGitHub <noreply@github.com>2021-02-10 13:14:47 +0100
commit1e71904cb9930eccc036e2ce2360beaa746befa7 (patch)
tree801816c814f87e468e3676ea5fd04ef63b5ecbbe /Source/Core
parent3e4bf57c696ed1e4f465075ae311653de2cd33b0 (diff)
parent7ef8e53c4a2874ba4f26593d799bc95fe04e8341 (diff)
Merge pull request #9495 from leoetlino/wiki-redirect
Qt: Fix "open wiki" option not using the wiki redirect script
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt/GameList/GameList.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp
index 65c870b1f4..3aea45a267 100644
--- a/Source/Core/DolphinQt/GameList/GameList.cpp
+++ b/Source/Core/DolphinQt/GameList/GameList.cpp
@@ -503,7 +503,8 @@ void GameList::OpenWiki()
return;
QString game_id = QString::fromStdString(game->GetGameID());
- QString url = QStringLiteral("https://wiki.dolphin-emu.org/index.php?title=").append(game_id);
+ QString url =
+ QStringLiteral("https://wiki.dolphin-emu.org/dolphin-redirect.php?gameid=").append(game_id);
QDesktopServices::openUrl(QUrl(url));
}