From d248b90c852469abcf74f78a97d5f0a150d4c519 Mon Sep 17 00:00:00 2001 From: N00byKing Date: Fri, 23 Mar 2018 15:24:21 +0100 Subject: [PATCH 1/3] main.cpp: Update Dialog from citra to yuzu --- src/yuzu/main.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index eb22a8ccf..78febb4eb 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -673,18 +673,18 @@ void GMainWindow::UpdateStatusBar() { void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string details) { QMessageBox::StandardButton answer; QString status_message; - const QString common_message = - tr("The game you are trying to load requires additional files from your 3DS to be dumped " - "before playing.

For more information on dumping these files, please see the " - "following wiki page: Dumping System " - "Archives and the Shared Fonts from a 3DS Console.

Would you like to quit " - "back to the game list? Continuing emulation may result in crashes, corrupted save " - "data, or other bugs."); + const QString common_message = tr( + "The game you are trying to load requires additional files from your Switch to be dumped " + "before playing.

For more information on dumping these files, please see the " + "following wiki page: Dumping System " + "Archives and the Shared Fonts from a Switch Console.

Would you like to quit " + "back to the game list? Continuing emulation may result in crashes, corrupted save " + "data, or other bugs."); switch (result) { case Core::System::ResultStatus::ErrorSystemFiles: { - QString message = "Citra was unable to locate a 3DS system archive"; + QString message = "yuzu was unable to locate a Switch system archive"; if (!details.empty()) { message.append(tr(": %1. ").arg(details.c_str())); } else { @@ -699,7 +699,7 @@ void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string det } case Core::System::ResultStatus::ErrorSharedFont: { - QString message = tr("Citra was unable to locate the 3DS shared fonts. "); + QString message = tr("yuzu was unable to locate the Switch shared fonts. "); message.append(common_message); answer = QMessageBox::question(this, tr("Shared Fonts Not Found"), message, QMessageBox::Yes | QMessageBox::No, QMessageBox::No); From 91e67ed4300aa86d94cf090bf1cf538eee0d5adb Mon Sep 17 00:00:00 2001 From: N00byKing Date: Sun, 25 Mar 2018 11:28:04 +0200 Subject: [PATCH 2/3] main.cpp: Replace Citra with yuzu Wiki Links --- src/yuzu/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 78febb4eb..cd799869c 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -350,9 +350,9 @@ bool GMainWindow::LoadROM(const QString& filename) { "yuzu. A real Switch is required.

" "For more information on dumping and decrypting games, please see the following " "wiki pages: ")); break; @@ -677,8 +677,8 @@ void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string det "The game you are trying to load requires additional files from your Switch to be dumped " "before playing.

For more information on dumping these files, please see the " "following wiki page: Dumping System " + "href='https://yuzu-emu.org/wiki/" + "dumping-system-archives-and-the-shared-fonts-from-a-switch-console/'>Dumping System " "Archives and the Shared Fonts from a Switch Console.

Would you like to quit " "back to the game list? Continuing emulation may result in crashes, corrupted save " "data, or other bugs."); From 10d6b07161bcdcdfac1838439057bf0f95cd15ef Mon Sep 17 00:00:00 2001 From: N00byKing Date: Mon, 26 Mar 2018 21:48:18 +0200 Subject: [PATCH 3/3] yuzu.cpp: Update Link from citra to yuzu --- src/yuzu_cmd/yuzu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { LOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before " "being used with yuzu. \n\n For more information on dumping and " "decrypting games, please refer to: " - "https://citra-emu.org/wiki/dumping-game-cartridges/"); + "https://yuzu-emu.org/wiki/dumping-game-cartridges/"); return -1; case Core::System::ResultStatus::ErrorLoader_ErrorInvalidFormat: LOG_CRITICAL(Frontend, "Error while loading ROM: The ROM format is not supported.");