diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml
index 8e9d1794d3..97759298a8 100644
--- a/src/android/app/src/main/res/values/strings.xml
+++ b/src/android/app/src/main/res/values/strings.xml
@@ -856,7 +856,7 @@
ROM file does not exist
Game Requires Firmware
-
+
Searching for game...
diff --git a/src/yuzu/main.ui b/src/yuzu/main.ui
index 59fb5f3d9a..0d90acf4d8 100644
--- a/src/yuzu/main.ui
+++ b/src/yuzu/main.ui
@@ -232,7 +232,7 @@
-
+
@@ -416,9 +416,9 @@
Open &Mods Page
-
+
- &FAQ
+ &User Handbook
diff --git a/src/yuzu/main_window.cpp b/src/yuzu/main_window.cpp
index 262ab73bc7..e81263fe4b 100644
--- a/src/yuzu/main_window.cpp
+++ b/src/yuzu/main_window.cpp
@@ -1624,7 +1624,7 @@ 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_FAQ, &MainWindow::OnOpenFAQ);
+ connect_menu(ui->action_Open_UserHandbook, &MainWindow::OnOpenUserHandbook);
connect_menu(ui->action_Restart, &MainWindow::OnRestartGame);
connect_menu(ui->action_Configure, &MainWindow::OnConfigure);
connect_menu(ui->action_Configure_Current_Game, &MainWindow::OnConfigurePerGame);
@@ -1962,7 +1962,7 @@ 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("This is usually caused by outdated GPU drivers, including integrated ones. "
+ tr("This is usually caused by outdated GPU drivers. "
"Please see the log for more details. See: "
""
"How to access log files."));
@@ -3317,7 +3317,7 @@ void MainWindow::OnOpenModsPage() {
OpenURL(QUrl(QStringLiteral("https://github.com/eden-emulator/yuzu-mod-archive")));
}
-void MainWindow::OnOpenFAQ() {
+void MainWindow::OnOpenUserHandbook() {
OpenURL(QUrl(QStringLiteral("https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/user/README.md")));
}
diff --git a/src/yuzu/main_window.h b/src/yuzu/main_window.h
index 9a2a3fef04..3ad61e1a0d 100644
--- a/src/yuzu/main_window.h
+++ b/src/yuzu/main_window.h
@@ -344,7 +344,7 @@ private slots:
void OnPrepareForSleep(bool prepare_sleep);
void OnMenuReportCompatibility();
void OnOpenModsPage();
- void OnOpenFAQ();
+ void OnOpenUserHandbook();
/// Called whenever a user selects a game in the game list widget.
void OnGameListLoadFile(QString game_path, u64 program_id);