diff --git a/src/duckstation-qt/settingswindow.cpp b/src/duckstation-qt/settingswindow.cpp
index dcc9e6c86..ae147e6a0 100644
--- a/src/duckstation-qt/settingswindow.cpp
+++ b/src/duckstation-qt/settingswindow.cpp
@@ -156,10 +156,11 @@ void SettingsWindow::addPages()
QString icon_text(QStringLiteral("trophy-line"));
QString help_text(
tr("Achievement Settings
DuckStation uses RetroAchievements as an achievement database and "
- "for tracking progress. To use achievements, please sign up for an account at retroachievements.org. To view "
+ "for tracking progress. To use achievements, please sign up for an account at %1. To view "
"the achievement list in-game, press the hotkey for Open Pause Menu and select "
"Achievements from the menu. Mouse over an option for additional information, and "
- "Shift+Wheel to scroll this panel."));
+ "Shift+Wheel to scroll this panel.")
+ .arg("https://retroachievements.org/"));
addWidget(m_achievement_settings = new AchievementSettingsWidget(this, m_ui.settingsContainer), std::move(title),
std::move(icon_text), std::move(help_text));