mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-15 21:19:47 +00:00
@@ -28,9 +28,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 <a href='https://yuzu-mirror.github.io/help/quickstart'>"
|
||||
"dump and install firmware</a>, 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;
|
||||
|
||||
@@ -233,7 +233,6 @@
|
||||
</property>
|
||||
<addaction name="action_Report_Compatibility"/>
|
||||
<addaction name="action_Open_Mods_Page"/>
|
||||
<addaction name="action_Open_Quickstart_Guide"/>
|
||||
<addaction name="action_Open_FAQ"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="action_About"/>
|
||||
@@ -407,11 +406,6 @@
|
||||
<string>Open &Mods Page</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="action_Open_Quickstart_Guide">
|
||||
<property name="text">
|
||||
<string>Open &Quickstart Guide</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="action_Open_FAQ">
|
||||
<property name="text">
|
||||
<string>&FAQ</string>
|
||||
|
||||
@@ -1500,7 +1500,6 @@ 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_Restart, &MainWindow::OnRestartGame);
|
||||
connect_menu(ui->action_Configure, &MainWindow::OnConfigure);
|
||||
@@ -1837,12 +1836,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, including integrated ones. "
|
||||
"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) {
|
||||
@@ -3149,12 +3146,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() {
|
||||
|
||||
@@ -336,7 +336,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.
|
||||
|
||||
Reference in New Issue
Block a user