diff options
| -rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index e597f9733..e83843a03 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -840,7 +840,7 @@ void GMainWindow::ConnectMenuEvents() { | |||
| 840 | connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnOpenModsPage); | 840 | connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnOpenModsPage); |
| 841 | connect(ui.action_Open_Quickstart_Guide, &QAction::triggered, this, | 841 | connect(ui.action_Open_Quickstart_Guide, &QAction::triggered, this, |
| 842 | &GMainWindow::OnOpenQuickstartGuide); | 842 | &GMainWindow::OnOpenQuickstartGuide); |
| 843 | connect(ui.action_Open_FAQ, &QAction::triggered, this, &GMainWindow::OnFAQ); | 843 | connect(ui.action_Open_FAQ, &QAction::triggered, this, &GMainWindow::OnOpenFAQ); |
| 844 | connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); }); | 844 | connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); }); |
| 845 | connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure); | 845 | connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure); |
| 846 | 846 | ||
| @@ -1828,7 +1828,7 @@ void GMainWindow::OnOpenQuickstartGuide() { | |||
| 1828 | OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/help/quickstart/"))); | 1828 | OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/help/quickstart/"))); |
| 1829 | } | 1829 | } |
| 1830 | 1830 | ||
| 1831 | void GMainWindow::OnFAQ() { | 1831 | void GMainWindow::OnOpenFAQ() { |
| 1832 | OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/wiki/faq/"))); | 1832 | OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/wiki/faq/"))); |
| 1833 | } | 1833 | } |
| 1834 | 1834 | ||