diff options
| author | Zephyron <zephyron@citron-emu.org> | 2025-03-09 22:23:54 +1000 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2025-05-12 12:46:19 +0100 |
| commit | 481bf648aa34bb83d267e838471d44ab8b10618e (patch) | |
| tree | 16178fefe4f2dfdb1b40a8552cafa8f4c1af11d6 /src | |
| parent | 26f0251b9385886a12cce02d65dd4c17a27faf0e (diff) | |
Remove quickstart guide references to address legal concerns
- Removed "Open Quickstart Guide" menu item and associated functions
- Replaced ROM loading error popup containing quickstart guide links
with a neutral disclaimer stating the software is provided as-is
without warranty or support
- This change helps minimize legal liability by avoiding
specific instructional content while directing users to community
resources for assistance
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 9 | ||||
| -rw-r--r-- | src/yuzu/main.h | 1 | ||||
| -rw-r--r-- | src/yuzu/main.ui | 5 |
3 files changed, 1 insertions, 14 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 476826e78..dd851faad 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1528,7 +1528,6 @@ void GMainWindow::ConnectMenuEvents() { connect_menu(ui->action_Pause, &GMainWindow::OnPauseContinueGame); connect_menu(ui->action_Stop, &GMainWindow::OnStopGame); connect_menu(ui->action_Report_Compatibility, &GMainWindow::OnMenuReportCompatibility); - connect_menu(ui->action_Open_Quickstart_Guide, &GMainWindow::OnOpenQuickstartGuide); connect_menu(ui->action_Open_FAQ, &GMainWindow::OnOpenFAQ); connect_menu(ui->action_Restart, &GMainWindow::OnRestartGame); connect_menu(ui->action_Configure, &GMainWindow::OnConfigure); @@ -1834,9 +1833,7 @@ bool GMainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletPa tr("Error while loading ROM! %1", "%1 signifies a numeric error code.") .arg(QString::fromStdString(error_code)); const auto description = - tr("%1<br>Please follow <a href='https://yuzu-emu.org/help/quickstart/'>the " - "yuzu quickstart guide</a> to redump your files.<br>You can refer " - "to the yuzu wiki</a> or the yuzu Discord</a> for help.", + tr("%1<br>This software is provided as-is without any warranty or support.<br>Please refer to community resources or documentation for assistance.", "%1 signifies an error string.") .arg(QString::fromStdString( GetResultStatusString(static_cast<Loader::ResultStatus>(error_id)))); @@ -3561,10 +3558,6 @@ void GMainWindow::OpenURL(const QUrl& url) { } } -void GMainWindow::OnOpenQuickstartGuide() { - OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/help/quickstart/"))); -} - void GMainWindow::OnOpenFAQ() { OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/wiki/faq/"))); } diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 9df32bdbc..5fcc8b6a0 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -340,7 +340,6 @@ private slots: void OnStopGame(); void OnPrepareForSleep(bool prepare_sleep); void OnMenuReportCompatibility(); - void OnOpenQuickstartGuide(); void OnOpenFAQ(); /// Called whenever a user selects a game in the game list widget. void OnGameListLoadFile(QString game_path, u64 program_id); diff --git a/src/yuzu/main.ui b/src/yuzu/main.ui index 5749294ef..928135455 100644 --- a/src/yuzu/main.ui +++ b/src/yuzu/main.ui @@ -373,11 +373,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> |
