From 9d70fb60402ae98b9021e1c98eb06664e34429e2 Mon Sep 17 00:00:00 2001 From: "Christopher J. Gilbert" Date: Sat, 5 Nov 2016 00:48:50 -0400 Subject: [PATCH] Error message for ErrorEncrypted new URLs. Updated error message for ErrorEncrypted, added new URLs for "dumping-game-cartridges" and "dumping-installed-titles" --- src/citra_qt/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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;