mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-11 06:17:41 +00:00
[qt] Update FAQ links (#3710)
Signed-off-by: lizzie <lizzie@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3710 Reviewed-by: MaranBr <maranbr@eden-emu.dev> Reviewed-by: Ghost <> Reviewed-by: crueter <crueter@eden-emu.dev> Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
This commit is contained in:
@@ -1506,8 +1506,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_Quickstart_Guide, &MainWindow::OnOpenQuickstartGuide);
|
||||
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);
|
||||
@@ -1843,12 +1842,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: "
|
||||
"<a href='https://yuzu-mirror.github.io/help/reference/log-files/'>"
|
||||
"How to Upload the Log File</a>. "));
|
||||
tr("This is usually caused by outdated GPU drivers. "
|
||||
"Please see the log for more details. See: "
|
||||
"<a href='https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/user/HowToAccessLogs.md'>"
|
||||
"How to access log files</a>."));
|
||||
break;
|
||||
default:
|
||||
if (result > Core::SystemResultStatus::ErrorLoader) {
|
||||
@@ -3199,12 +3196,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")));
|
||||
void MainWindow::OnOpenUserHandbook() {
|
||||
OpenURL(QUrl(QStringLiteral("https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/user/README.md")));
|
||||
}
|
||||
|
||||
void MainWindow::ToggleFullscreen() {
|
||||
|
||||
Reference in New Issue
Block a user