diff --git a/src/qt_common/util/content.cpp b/src/qt_common/util/content.cpp
index 4d9b324608..b100a3ac9d 100644
--- a/src/qt_common/util/content.cpp
+++ b/src/qt_common/util/content.cpp
@@ -27,9 +27,8 @@ bool CheckGameFirmware(u64 program_id) {
!FirmwareManager::CheckFirmwarePresence(*system)) {
auto result = QtCommon::Frontend::Warning(
tr("Game Requires Firmware"),
- tr("The game you are trying to launch requires firmware to boot or to get past the "
- "opening menu. Please "
- "dump and install firmware, or press \"OK\" to launch anyways."),
+ tr("The game you are trying to launch requires firmware to work. "
+ "Press \"OK\" to launch anyways."),
QtCommon::Frontend::Ok | QtCommon::Frontend::Cancel);
return result == QtCommon::Frontend::Ok;
diff --git a/src/yuzu/main.ui b/src/yuzu/main.ui
index 59aab0ef93..59fb5f3d9a 100644
--- a/src/yuzu/main.ui
+++ b/src/yuzu/main.ui
@@ -232,7 +232,6 @@
-
@@ -417,11 +416,6 @@
Open &Mods Page
-
-
- Open &Quickstart Guide
-
-
&FAQ
diff --git a/src/yuzu/main_window.cpp b/src/yuzu/main_window.cpp
index c0f757f697..1042133d48 100644
--- a/src/yuzu/main_window.cpp
+++ b/src/yuzu/main_window.cpp
@@ -1624,7 +1624,6 @@ void MainWindow::ConnectMenuEvents() {
connect_menu(ui->action_Stop, &MainWindow::OnStopGame);
connect_menu(ui->action_Report_Compatibility, &MainWindow::OnMenuReportCompatibility);
connect_menu(ui->action_Open_Mods_Page, &MainWindow::OnOpenModsPage);
- connect_menu(ui->action_Open_Quickstart_Guide, &MainWindow::OnOpenQuickstartGuide);
connect_menu(ui->action_Open_FAQ, &MainWindow::OnOpenFAQ);
connect_menu(ui->action_Restart, &MainWindow::OnRestartGame);
connect_menu(ui->action_Configure, &MainWindow::OnConfigure);
@@ -1963,12 +1962,10 @@ bool MainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletPar
case Core::SystemResultStatus::ErrorVideoCore:
QMessageBox::critical(
this, tr("An error occurred initializing the video core."),
- tr("Eden has encountered an error while running the video core. "
- "This is usually caused by outdated GPU drivers, including integrated ones. "
- "Please see the log for more details. "
- "For more information on accessing the log, please see the following page: "
- ""
- "How to Upload the Log File. "));
+ tr("This is usually caused by outdated GPU drivers, including integrated ones. "
+ "Please see the log for more details. See: "
+ ""
+ "How to access log files."));
break;
default:
if (result > Core::SystemResultStatus::ErrorLoader) {
@@ -3320,12 +3317,8 @@ void MainWindow::OnOpenModsPage() {
OpenURL(QUrl(QStringLiteral("https://github.com/eden-emulator/yuzu-mod-archive")));
}
-void MainWindow::OnOpenQuickstartGuide() {
- OpenURL(QUrl(QStringLiteral("https://yuzu-mirror.github.io/help/quickstart/")));
-}
-
void MainWindow::OnOpenFAQ() {
- OpenURL(QUrl(QStringLiteral("https://yuzu-mirror.github.io/help")));
+ OpenURL(QUrl(QStringLiteral("https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/user/README.md")));
}
void MainWindow::ToggleFullscreen() {
diff --git a/src/yuzu/main_window.h b/src/yuzu/main_window.h
index e85aadaa3d..9a2a3fef04 100644
--- a/src/yuzu/main_window.h
+++ b/src/yuzu/main_window.h
@@ -344,7 +344,6 @@ private slots:
void OnPrepareForSleep(bool prepare_sleep);
void OnMenuReportCompatibility();
void OnOpenModsPage();
- void OnOpenQuickstartGuide();
void OnOpenFAQ();
/// Called whenever a user selects a game in the game list widget.