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)); }