summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp26
-rw-r--r--src/yuzu_cmd/yuzu.cpp2
2 files changed, 14 insertions, 14 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 265502c2a..0bdb63a0b 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -371,9 +371,9 @@ bool GMainWindow::LoadROM(const QString& filename) {
371 "yuzu. A real Switch is required.<br/><br/>" 371 "yuzu. A real Switch is required.<br/><br/>"
372 "For more information on dumping and decrypting games, please see the following " 372 "For more information on dumping and decrypting games, please see the following "
373 "wiki pages: <ul>" 373 "wiki pages: <ul>"
374 "<li><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Dumping Game " 374 "<li><a href='https://yuzu-emu.org/wiki/dumping-game-cartridges/'>Dumping Game "
375 "Cartridges</a></li>" 375 "Cartridges</a></li>"
376 "<li><a href='https://citra-emu.org/wiki/dumping-installed-titles/'>Dumping " 376 "<li><a href='https://yuzu-emu.org/wiki/dumping-installed-titles/'>Dumping "
377 "Installed Titles</a></li>" 377 "Installed Titles</a></li>"
378 "</ul>")); 378 "</ul>"));
379 break; 379 break;
@@ -695,18 +695,18 @@ void GMainWindow::UpdateStatusBar() {
695void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string details) { 695void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string details) {
696 QMessageBox::StandardButton answer; 696 QMessageBox::StandardButton answer;
697 QString status_message; 697 QString status_message;
698 const QString common_message = 698 const QString common_message = tr(
699 tr("The game you are trying to load requires additional files from your 3DS to be dumped " 699 "The game you are trying to load requires additional files from your Switch to be dumped "
700 "before playing.<br/><br/>For more information on dumping these files, please see the " 700 "before playing.<br/><br/>For more information on dumping these files, please see the "
701 "following wiki page: <a " 701 "following wiki page: <a "
702 "href='https://citra-emu.org/wiki/" 702 "href='https://yuzu-emu.org/wiki/"
703 "dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Dumping System " 703 "dumping-system-archives-and-the-shared-fonts-from-a-switch-console/'>Dumping System "
704 "Archives and the Shared Fonts from a 3DS Console</a>.<br/><br/>Would you like to quit " 704 "Archives and the Shared Fonts from a Switch Console</a>.<br/><br/>Would you like to quit "
705 "back to the game list? Continuing emulation may result in crashes, corrupted save " 705 "back to the game list? Continuing emulation may result in crashes, corrupted save "
706 "data, or other bugs."); 706 "data, or other bugs.");
707 switch (result) { 707 switch (result) {
708 case Core::System::ResultStatus::ErrorSystemFiles: { 708 case Core::System::ResultStatus::ErrorSystemFiles: {
709 QString message = "Citra was unable to locate a 3DS system archive"; 709 QString message = "yuzu was unable to locate a Switch system archive";
710 if (!details.empty()) { 710 if (!details.empty()) {
711 message.append(tr(": %1. ").arg(details.c_str())); 711 message.append(tr(": %1. ").arg(details.c_str()));
712 } else { 712 } else {
@@ -721,7 +721,7 @@ void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string det
721 } 721 }
722 722
723 case Core::System::ResultStatus::ErrorSharedFont: { 723 case Core::System::ResultStatus::ErrorSharedFont: {
724 QString message = tr("Citra was unable to locate the 3DS shared fonts. "); 724 QString message = tr("yuzu was unable to locate the Switch shared fonts. ");
725 message.append(common_message); 725 message.append(common_message);
726 answer = QMessageBox::question(this, tr("Shared Fonts Not Found"), message, 726 answer = QMessageBox::question(this, tr("Shared Fonts Not Found"), message,
727 QMessageBox::Yes | QMessageBox::No, QMessageBox::No); 727 QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index 8f7c75796..261312f62 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -147,7 +147,7 @@ int main(int argc, char** argv) {
147 LOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before " 147 LOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before "
148 "being used with yuzu. \n\n For more information on dumping and " 148 "being used with yuzu. \n\n For more information on dumping and "
149 "decrypting games, please refer to: " 149 "decrypting games, please refer to: "
150 "https://citra-emu.org/wiki/dumping-game-cartridges/"); 150 "https://yuzu-emu.org/wiki/dumping-game-cartridges/");
151 return -1; 151 return -1;
152 case Core::System::ResultStatus::ErrorLoader_ErrorInvalidFormat: 152 case Core::System::ResultStatus::ErrorLoader_ErrorInvalidFormat:
153 LOG_CRITICAL(Frontend, "Error while loading ROM: The ROM format is not supported."); 153 LOG_CRITICAL(Frontend, "Error while loading ROM: The ROM format is not supported.");