summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/citra_qt/main.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index e3b296188..c899e075f 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -340,9 +340,9 @@ bool GMainWindow::LoadROM(const QString& filename) {
340 "Citra. A real 3DS is required.<br/><br/>" 340 "Citra. A real 3DS is required.<br/><br/>"
341 "For more information on dumping and decrypting games, please see the following " 341 "For more information on dumping and decrypting games, please see the following "
342 "wiki pages: <ul>" 342 "wiki pages: <ul>"
343 "<li><a href='https://citra-emu.org/wiki/Dumping-Game-Cartridges/'>Dumping Game " 343 "<li><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Dumping Game "
344 "Cartridges</a></li>" 344 "Cartridges</a></li>"
345 "<li><a href='https://citra-emu.org/wiki/Dumping-Installed-Titles/'>Dumping " 345 "<li><a href='https://citra-emu.org/wiki/dumping-installed-titles/'>Dumping "
346 "Installed Titles</a></li>" 346 "Installed Titles</a></li>"
347 "</ul>")); 347 "</ul>"));
348 break; 348 break;
@@ -355,7 +355,7 @@ bool GMainWindow::LoadROM(const QString& filename) {
355 case Core::System::ResultStatus::ErrorVideoCore: 355 case Core::System::ResultStatus::ErrorVideoCore:
356 QMessageBox::critical( 356 QMessageBox::critical(
357 this, tr("An error occured in the video core."), 357 this, tr("An error occured in the video core."),
358 tr("Citra has encountered an error while running the video core, please see the " 358 tr("Citra has encountered an error while running the video core, please see the "
359 "log for more details." 359 "log for more details."
360 "For more information on accessing the log, please see the following page: " 360 "For more information on accessing the log, please see the following page: "
361 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How " 361 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How "
@@ -656,9 +656,10 @@ void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string det
656 "before playing.<br/><br/>For more information on dumping these files, please see the " 656 "before playing.<br/><br/>For more information on dumping these files, please see the "
657 "following wiki page: <a " 657 "following wiki page: <a "
658 "href='https://citra-emu.org/wiki/" 658 "href='https://citra-emu.org/wiki/"
659 "Dumping-System-Archives-and-the-Shared-Fonts-from-a-3DS-Console/'>Dumping System " 659 "dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Dumping System "
660 "Archives and the Shared Fonts from a 3DS Console</a>.<br/><br/>Would you like to quit " 660 "Archives and the Shared Fonts from a 3DS Console</a>.<br/><br/>Would you like to quit "
661 "back to the game list?"); 661 "back to the game list? Continuing emulation may result in crashes, corrupted save "
662 "data, or other bugs.");
662 switch (result) { 663 switch (result) {
663 case Core::System::ResultStatus::ErrorSystemFiles: { 664 case Core::System::ResultStatus::ErrorSystemFiles: {
664 QString message = "Citra was unable to locate a 3DS system archive"; 665 QString message = "Citra was unable to locate a 3DS system archive";
@@ -689,7 +690,8 @@ void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string det
689 tr("Citra has encountered a fatal error, please see the log for more details. " 690 tr("Citra has encountered a fatal error, please see the log for more details. "
690 "For more information on accessing the log, please see the following page: " 691 "For more information on accessing the log, please see the following page: "
691 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How to " 692 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How to "
692 "Upload the Log File</a>.<br/><br/>Would you like to quit back to the game list?"), 693 "Upload the Log File</a>.<br/><br/>Would you like to quit back to the game list? "
694 "Continuing emulation may result in crashes, corrupted save data, or other bugs."),
693 QMessageBox::Yes | QMessageBox::No, QMessageBox::No); 695 QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
694 status_message = "Fatal Error encountered"; 696 status_message = "Fatal Error encountered";
695 break; 697 break;