From 71f0eec19808781e99cb3e781e12df1edca71222 Mon Sep 17 00:00:00 2001 From: lizzie Date: Wed, 22 Apr 2026 15:31:32 +0000 Subject: [PATCH] fixup --- src/android/app/src/main/res/values/strings.xml | 2 +- src/yuzu/main.ui | 6 +++--- src/yuzu/main_window.cpp | 6 +++--- src/yuzu/main_window.h | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml index acac88a829..bb61ec2ee4 100644 --- a/src/android/app/src/main/res/values/strings.xml +++ b/src/android/app/src/main/res/values/strings.xml @@ -867,7 +867,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 2fb929425b..13ded52cc0 100644 --- a/src/yuzu/main.ui +++ b/src/yuzu/main.ui @@ -233,7 +233,7 @@ - + @@ -406,9 +406,9 @@ Open &Mods Page - + - &FAQ + &User Handbook diff --git a/src/yuzu/main_window.cpp b/src/yuzu/main_window.cpp index 18fcafea89..7f0282566b 100644 --- a/src/yuzu/main_window.cpp +++ b/src/yuzu/main_window.cpp @@ -1500,7 +1500,7 @@ void MainWindow::ConnectMenuEvents() { connect_menu(ui->action_Pause, &MainWindow::OnPauseContinueGame); connect_menu(ui->action_Stop, &MainWindow::OnStopGame); 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); @@ -1836,7 +1836,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.")); @@ -3146,7 +3146,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 3196c86ddd..1c002e6012 100644 --- a/src/yuzu/main_window.h +++ b/src/yuzu/main_window.h @@ -336,7 +336,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);