diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 8322e2305..dda877043 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -303,11 +303,11 @@ bool GMainWindow::LoadROM(const std::string& filename) {
popup_error.setTextFormat(Qt::RichText);
popup_error.setWindowTitle(tr("Error while loading ROM!"));
popup_error.setText(
- tr("The game that you are trying to load must be decrypted before being used with "
- "Citra.
"
- "For more information on dumping and decrypting games, please see: https://"
- "citra-emu.org/wiki/Dumping-Game-Cartridges"));
+ tr("The game that you are trying to load must be decrypted before being used with Citra.
"
+ "For more information on dumping and decrypting games, please follow the below:
"
+ "Wiki Article on how to dump game cartridges"
+ "
and
"
+ "Wiki Article on how to dump installed titles (eShop games)"));
popup_error.setIcon(QMessageBox::Critical);
popup_error.exec();
break;